/* ─── CSS Variables ─────────────────────────── */
:root {
  --bg-deep: #080b14;
  --bg-card: #0e1322;
  --bg-section: #0b0f1c;
  --accent-blue: #4f8ef7;
  --accent-violet: #7b5cf5;
  --accent-green: #2af598;
  --accent-yellow: #f5d042;
  --text-main: #e8eaf6;
  --text-muted: #7b82a8;
  --border: rgba(79, 142, 247, 0.15);
  --glow-blue: 0 0 40px rgba(79, 142, 247, 0.25);
  --glow-violet: 0 0 40px rgba(123, 92, 245, 0.25);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─── Scrollbar ──────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-violet);
  border-radius: 3px;
}

/* ─── Noise overlay ──────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.55;
}

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(8, 11, 20, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-logo {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-green), #00d4a8);
  color: #080b14 !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  transition:
    transform var(--transition),
    box-shadow var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 245, 152, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(8, 11, 20, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 1.5rem 6%;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.mobile-menu a:hover {
  color: var(--text-main);
}

.mobile-menu .nav-cta {
  color: #080b14 !important;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

/* ─── HERO ───────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 6% 5rem;
  overflow: hidden;
}

/* Animated background orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(123, 92, 245, 0.2) 0%,
    transparent 70%
  );
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(79, 142, 247, 0.2) 0%,
    transparent 70%
  );
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(42, 245, 152, 0.08) 0%,
    transparent 70%
  );
  animation-delay: -2s;
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.05);
  }
}

.orb-3 {
  animation: orbFloat3 10s ease-in-out infinite alternate;
}

@keyframes orbFloat3 {
  from {
    transform: translate(-50%, -50%) scale(1);
  }

  to {
    transform: translate(calc(-50% + 20px), calc(-50% + 30px)) scale(1.1);
  }
}

/* Grid lines */
.grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(79, 142, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 142, 247, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 30%,
    transparent 80%
  );
}

/* Floating card decorations */
.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.fc {
  position: absolute;
  width: 60px;
  height: 84px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(2px);
  animation: fcFloat var(--dur, 12s) ease-in-out infinite alternate;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fc::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  opacity: 0.15;
}

.fc:nth-child(1) {
  top: 12%;
  left: 5%;
  transform: rotate(-15deg);
  --dur: 14s;
  --clr1: #4f8ef7;
  --clr2: #7b5cf5;
}

.fc:nth-child(2) {
  top: 20%;
  right: 6%;
  transform: rotate(12deg);
  --dur: 11s;
  --clr1: #f5d042;
  --clr2: #f7994f;
}

.fc:nth-child(3) {
  bottom: 20%;
  left: 8%;
  transform: rotate(8deg);
  --dur: 16s;
  --clr1: #2af598;
  --clr2: #4f8ef7;
}

.fc:nth-child(4) {
  bottom: 25%;
  right: 5%;
  transform: rotate(-20deg);
  --dur: 13s;
  --clr1: #7b5cf5;
  --clr2: #2af598;
}

.fc:nth-child(5) {
  top: 60%;
  left: 50%;
  transform: rotate(5deg);
  --dur: 9s;
  width: 40px;
  height: 56px;
  --clr1: #f5d042;
  --clr2: #7b5cf5;
}

@keyframes fcFloat {
  from {
    transform: rotate(var(--r, -15deg)) translateY(0px);
  }

  to {
    transform: rotate(var(--r, -15deg)) translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 142, 247, 0.1);
  border: 1px solid rgba(79, 142, 247, 0.25);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: "✦";
  font-size: 0.7rem;
}

h1 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(
    135deg,
    #fff 0%,
    #b8c4f0 50%,
    var(--accent-violet) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
  letter-spacing: -0.01em;
}

h1 span {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--accent-green), #00c896);
  color: #080b14;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 0 0 rgba(42, 245, 152, 0);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42, 245, 152, 0.4);
}

.btn-primary .arrow {
  transition: transform var(--transition);
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── BANNER STRIP ───────────────────────────── */
.strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--accent-violet),
    var(--accent-blue),
    var(--accent-violet)
  );
  padding: 0.65rem 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: stripScroll 20s linear infinite;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  flex-shrink: 0;
}

.strip-item::before {
  content: "★";
  font-size: 0.7rem;
  opacity: 0.7;
}

@keyframes stripScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTIONS GENERIC ───────────────────────── */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 6%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-violet);
  margin-bottom: 1rem;
}

.section-label::before {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-violet);
}

h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2 .grad {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ─── À PROPOS ───────────────────────────────── */
#apropos {
  background: var(--bg-section);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.apropos-visual {
  position: relative;
  aspect-ratio: 1/1.1;
  max-width: 400px;
}

.apropos-bg-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(79, 142, 247, 0.08),
    rgba(123, 92, 245, 0.08)
  );
  border: 1px solid var(--border);
}

.apropos-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel Decorative", serif;
  font-size: 7rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(79, 142, 247, 0.15),
    rgba(123, 92, 245, 0.15)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.apropos-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-green), #00c896);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 32px rgba(42, 245, 152, 0.3);
}

.apropos-tag {
  position: absolute;
  top: -16px;
  left: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.apropos-text h2 {
  margin-bottom: 0.75rem;
}

.apropos-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.apropos-text p strong {
  color: var(--text-main);
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  background: rgba(79, 142, 247, 0.08);
  border: 1px solid rgba(79, 142, 247, 0.15);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
}

/* ─── PRODUITS ───────────────────────────────── */
#produits {
  background: var(--bg-deep);
}

.products-header {
  margin-bottom: 3.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--card-glow);
  transition: opacity var(--transition);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border);
  box-shadow: var(--card-shadow);
}

.pc-1 {
  --card-glow: linear-gradient(135deg, rgba(79, 142, 247, 0.06), transparent);
  --card-border: rgba(79, 142, 247, 0.3);
  --card-shadow: var(--glow-blue);
}

.pc-2 {
  --card-glow: linear-gradient(135deg, rgba(245, 208, 66, 0.06), transparent);
  --card-border: rgba(245, 208, 66, 0.3);
  --card-shadow: 0 0 40px rgba(245, 208, 66, 0.15);
}

.pc-3 {
  --card-glow: linear-gradient(135deg, rgba(123, 92, 245, 0.06), transparent);
  --card-border: rgba(123, 92, 245, 0.3);
  --card-shadow: var(--glow-violet);
}

.pc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.pc-1 .pc-icon {
  background: rgba(79, 142, 247, 0.1);
}

.pc-2 .pc-icon {
  background: rgba(245, 208, 66, 0.1);
}

.pc-3 .pc-icon {
  background: rgba(123, 92, 245, 0.1);
}

.product-card h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.pc-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── IMAGE BANNER ───────────────────────────── */
.img-banner {
  position: relative;
  z-index: 1;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-deep));
}

.img-banner-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background:
    radial-gradient(
      ellipse 40% 60% at 20% 50%,
      rgba(79, 142, 247, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 50%,
      rgba(123, 92, 245, 0.12) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg-deep), var(--bg-section), var(--bg-deep));
}

.banner-text {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  padding: 0 2rem;
  letter-spacing: 0.04em;
}

.banner-cards-row {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  gap: 2px;
  overflow: hidden;
}

.banner-bar {
  flex: 1;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(79, 142, 247, 0.05));
}

.banner-bar:nth-child(even) {
  background: linear-gradient(180deg, transparent, rgba(123, 92, 245, 0.05));
}

/* ─── ENGAGEMENTS ────────────────────────────── */
#engagements {
  background: var(--bg-section);
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.engagement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.engagement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 245, 152, 0.25);
}

.eg-number {
  font-family: "Cinzel Decorative", serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(
    135deg,
    rgba(42, 245, 152, 0.12),
    rgba(79, 142, 247, 0.08)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}

.eg-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(42, 245, 152, 0.1);
  border: 1px solid rgba(42, 245, 152, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.engagement-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
}

.engagement-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── CTA ────────────────────────────────────── */
#cta {
  background: var(--bg-deep);
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(123, 92, 245, 0.15) 0%,
    transparent 60%
  );
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-green), #00c896);
  color: #080b14;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.1rem 2.75rem;
  border-radius: 50px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 0 0 rgba(42, 245, 152, 0);
  letter-spacing: 0.01em;
}

.btn-cta-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(42, 245, 152, 0.4);
}

.cta-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item::before {
  font-size: 1rem;
}

.t1::before {
  content: "🔒";
}

.t2::before {
  content: "📦";
}

.t3::before {
  content: "✅";
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 2.5rem 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-blue);
}

/* ─── SCROLL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .apropos-grid {
    grid-template-columns: 1fr;
  }

  .apropos-visual {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .engagements-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .cta-inner {
    padding: 3rem 1.75rem;
  }
}

@media (max-width: 600px) {
  section {
    padding: 4.5rem 5%;
  }

  nav {
    padding: 1rem 5%;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}
