@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-Light-BF64001372cdbe6.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-Regular-BF64001370dce31.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-Italic-BF64001372af01e.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-SemiBold-BF64001373561ed.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-Bold-BF64001371c6dc4.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-ExtraBold-BF64001372902fb.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Celebes'; src: url('fonts/Celebes-Black-BF64001371b9d67.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
/* ── Design Tokens ── */
:root {
  --font-size: 16px;
  --background: #0a0a0a;
  --foreground: #f0f0f0;
  --card: #131313;
  --card-foreground: #f0f0f0;
  --primary: #f0f0f0;
  --primary-foreground: #0a0a0a;
  --secondary: #1a1a1a;
  --secondary-foreground: #f0f0f0;
  --muted: #1a1a1a;
  --muted-foreground: #8a8a9a;
  --accent: #1a1a1a;
  --accent-foreground: #f0f0f0;
  --border: rgba(255,255,255,.08);
  --radius: .625rem;
  --red: #E31E24;
  --red-light: #FF3344;
  --red-dim: rgba(227,30,36,.12);
  --dark-bg: #000000;
  --dark-surface: #111111;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: var(--font-size); }
body {
  font-family: 'Celebes', sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Celebes', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 100px;
  padding: .25rem .85rem;
  margin-bottom: 1.25rem;
}
.section-tag.dark { color: var(--red-light); border-color: var(--red-light); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Celebes', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s ease;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: #c0121f; transform: translateY(-1px); box-shadow: 0 8px 24px #E8192C44; }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red-dim); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── Geometric Pattern SVG ── */
.geo-pattern {
  position: absolute;
  opacity: .06;
  pointer-events: none;
}

/* ═══════════════════════════════ NAV ═══════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all .3s ease;
}
#nav.scrolled {
  background: rgba(3,2,19,.92);
  backdrop-filter: blur(12px);
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 72px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: 1rem; }
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: .65rem;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: .5rem;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: var(--red); }
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: all .3s;
}
.nav-burger:hover span { background: var(--red-light); }

/* ═══════════════════════════════ HERO ═══════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-geo-1 { top: -5%; right: -5%; width: 500px; height: 500px; opacity: .07; }
.hero-geo-2 { bottom: -10%; left: -5%; width: 400px; height: 400px; opacity: .05; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--red);
}
.hero-eyebrow-text {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
}
.hero-headline {
  font-family: 'Celebes', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-headline .accent { color: var(--red); white-space: nowrap; }
.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

/* ── Hero bottom bar ── */
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
  z-index: 2;
}
.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-service-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .3rem .75rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-shrink: 0;
}
.hero-stat-item { text-align: right; }
.hero-stat-num {
  font-family: 'Celebes', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: .2rem;
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: float 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 20px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--red);
  border-radius: 3px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ═══════════════════════════════ SERVICES ═══════════════════════════════ */
#services { padding: 6rem 0; background: var(--background); }
.section-header { margin-bottom: 3.5rem; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-desc {
  color: var(--muted-foreground);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dim), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 60px -15px rgba(232,25,44,.15); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 48px; height: 48px;
  background: var(--red-dim);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--primary);
}
.service-desc {
  font-size: .875rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 0;
}
.service-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
#services .service-footer { border-top-color: rgba(0,0,0,.08); }
.service-price {
  font-family: 'Celebes', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1.5;
}
.service-cta {
  font-family: 'Celebes', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .2s ease, color .2s ease;
}
.service-cta::after { content: '→'; }
.service-cta:hover { color: var(--red); gap: .6rem; }

/* ═══════════════════════════════ ABOUT ═══════════════════════════════ */
#about {
  padding: 6rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-quote {
  font-family: 'Celebes', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.about-quote .accent { color: var(--red); }
.about-body {
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-signature {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.about-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.about-stat-card:first-child {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}
.about-stat-num {
  font-family: 'Celebes', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.about-stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: .35rem;
}
.about-stat-desc {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  line-height: 1.5;
}

/* ═══════════════════════════════ PORTFOLIO ═══════════════════════════════ */
#portfolio { padding: 6rem 0; background: var(--background); }
.portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  font-family: 'Celebes', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.portfolio-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--muted);
  cursor: pointer;
  transition: transform .3s ease;
}
.portfolio-item:hover { transform: scale(.98); }
.portfolio-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: 2.5rem;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,2,19,.9) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: opacity .3s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item-title {
  font-family: 'Celebes', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .25rem;
}
.portfolio-item-cat {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}
.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding: 2.5rem;
  background: #111111;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1.25rem;
  text-align: center;
}
.pstat-num {
  font-family: 'Celebes', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
}
.pstat-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: .25rem;
}

/* ═══════════════════════════════ PRICING INFINITY ═══════════════════════════════ */
#infinity { padding: 6rem 0; background: #ffffff; }
.infinity-header { text-align: center; margin-bottom: 3.5rem; }
.infinity-header .section-desc { margin: 0 auto 1.5rem; }
.infinity-note {
  font-size: .85rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: .75rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all .3s;
}
.pricing-card.popular {
  background: #1a1a1a;
  border-color: var(--red);
  position: relative;
  box-shadow: 0 0 0 1px var(--red), 0 20px 60px -15px rgba(227,30,36,.2);
}
.popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: 'Celebes', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
}
.pricing-name {
  font-family: 'Celebes', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.pricing-card.popular .pricing-name { color: rgba(255,255,255,.5); }
.pricing-price {
  font-family: 'Celebes', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  white-space: nowrap;
}
.pricing-card.popular .pricing-price { color: #fff; }
.pricing-period {
  font-size: .875rem;
  color: var(--muted-foreground);
  margin-left: .25rem;
}
.pricing-card.popular .pricing-period { color: rgba(255,255,255,.4); }
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.pricing-card.popular .pricing-divider { background: rgba(255,255,255,.1); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--foreground);
}
.pricing-card.popular .pricing-feature { color: rgba(255,255,255,.8); }
.check-icon {
  width: 18px; height: 18px;
  background: var(--red-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: .7rem;
  margin-top: 1px;
}
.pricing-card.popular .check-icon { background: rgba(232,25,44,.2); }
.pricing-cta { margin-top: 2rem; width: 100%; justify-content: center; }
.pricing-cancel {
  text-align: center;
  font-size: .75rem;
  color: var(--muted-foreground);
  margin-top: .75rem;
}
.pricing-card.popular .pricing-cancel { color: rgba(255,255,255,.35); }

/* ═══════════════════════════════ COMMUNITY MANAGEMENT ═══════════════════════════════ */
#cm { padding: 6rem 0; background: var(--background); }
.cm-header { text-align: center; margin-bottom: 3.5rem; }
.cm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cm-card {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: all .3s;
  position: relative;
}
.cm-card.popular {
  background: #1a1a1a;
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 20px 60px -15px rgba(227,30,36,.2);
}
.cm-tier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.cm-card.popular .cm-tier { color: rgba(255,255,255,.4); }
.cm-price {
  font-family: 'Celebes', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
}
.cm-card.popular .cm-price { color: #fff; }
.cm-period { font-size: .875rem; color: var(--muted-foreground); }
.cm-card.popular .cm-period { color: rgba(255,255,255,.4); }
.cm-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.cm-card.popular .cm-divider { background: rgba(255,255,255,.1); }
.cm-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.cm-feature {
  display: flex; align-items: center; gap: .65rem;
  font-size: .875rem; color: var(--foreground);
}
.cm-card.popular .cm-feature { color: rgba(255,255,255,.8); }
.cm-check { color: var(--red); font-size: .875rem; flex-shrink: 0; }

/* ═══════════════════════════════ WHY US ═══════════════════════════════ */
#why {
  padding: 6rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-headline {
  font-family: 'Celebes', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.why-headline .accent { color: var(--red); }
.why-body {
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.why-items { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1rem;
  transition: all .3s;
}
.why-item:hover { background: rgba(255,255,255,.07); border-color: rgba(232,25,44,.2); }
.why-item-icon {
  width: 44px; height: 44px;
  background: var(--red-dim);
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-item-title {
  font-family: 'Celebes', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .35rem;
}
.why-item-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}

/* ═══════════════════════════════ CTA BANNER ═══════════════════════════════ */
#cta-banner {
  padding: 5rem 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner-title {
  font-family: 'Celebes', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-banner-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.btn-white {
  background: #fff;
  color: var(--red);
  font-family: 'Celebes', sans-serif;
  font-size: .875rem;
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* ═══════════════════════════════ FOOTER ═══════════════════════════════ */
#footer {
  background: var(--dark-bg);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Celebes', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .75rem;
}
.footer-brand-name span { color: var(--red); }
.footer-brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .65rem;
}
.footer-contact-item .icon { color: var(--red); }
.footer-heading {
  font-family: 'Celebes', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}
.footer-heart { color: var(--red); }
.footer-social {
  display: flex;
  gap: .75rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: all .2s;
}
.social-link:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }

/* ── Mobile Nav ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 0 2rem 2.5rem;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2.5rem;
}
.mobile-menu-logo { height: 48px; width: auto; }
.mobile-close {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.mobile-close:hover { background: var(--red-dim); border-color: var(--red); color: var(--red); }
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: 'Celebes', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}
.mobile-link:hover { color: #fff; padding-left: .5rem; }
.mobile-link:hover .mobile-link-num { color: var(--red); }
.mobile-link-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--red);
  min-width: 24px;
  transition: color .2s;
}
.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}
.mobile-menu-cta { width: 100%; justify-content: center; }
.mobile-menu-tagline {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  text-align: center;
}

/* Infinity : 3 colonnes desktop — doit être avant les media queries */
#infinity .pricing-grid { grid-template-columns: repeat(3,1fr); max-width: 1040px; margin: 0 auto; }

/* ── Responsive ── */

/* ── Tablet landscape (1024px) ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stat-card:first-child { grid-column: span 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:nth-child(1) { grid-column: span 2; }
  /* CM: 2 colonnes tablette (la 3ème passe sous) */
  .cm-grid { grid-template-columns: 1fr 1fr; }
  .cm-card.popular { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ── Tablet portrait (768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { height: 44px; }

  /* Infinity pricing — override ID specificity */
  #infinity .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* Section padding */
  #services, #about, #portfolio, #infinity,
  #cm, #why { padding: 4rem 0; }
  #cta-banner { padding: 3.5rem 0; }
  #footer { padding: 3rem 0 1.5rem; }

  /* Hero */
  .hero-content { padding: 6rem 0 2rem; }
  .hero-bottom { position: static; border-top: none; padding: 1.5rem 0; }
  .hero-bottom-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-item { text-align: left; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-card:first-child { grid-column: span 2; flex-direction: column; text-align: center; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* CM */
  .cm-grid { grid-template-columns: 1fr; }
  .cm-card.popular { grid-column: span 1; max-width: 100%; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:nth-child(1) { grid-column: span 1; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .portfolio-stats { grid-template-columns: 1fr 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* CTA banner */
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 340px; justify-content: center; }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
  /* Section padding */
  #services, #about, #portfolio, #infinity,
  #cm, #why { padding: 3rem 0; }
  #cta-banner { padding: 3rem 0; }

  /* Hero */
  .hero-content { padding: 5.5rem 0 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.75rem; }
  .scroll-indicator { display: none; }

  /* About */
  .about-stats-grid { grid-template-columns: 1fr; }
  .about-stat-card:first-child { grid-column: span 1; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Portfolio filters: scroll horizontal */
  .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .portfolio-filters::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  .portfolio-stats { grid-template-columns: 1fr 1fr; }

  /* Pricing price font */
  .pricing-price { font-size: 2rem; }
  .cm-price { font-size: 1.875rem; }

  /* Buttons */
  .btn { padding: .75rem 1.5rem; font-size: .82rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-bottom .footer-social { display: none; }
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Section Expertises : fond blanc (contraste dark/light) ── */
#services { background: #ffffff; }
#services .section-title { color: #0a0a0a; }
#services .section-desc  { color: #55556a; }
#services .service-card  { background: #ffffff; border-color: rgba(0,0,0,.08); }
#services .service-card:hover { border-color: var(--red); box-shadow: 0 20px 60px -15px rgba(227,30,36,.12); }
#services .service-card::before { background: linear-gradient(135deg, rgba(227,30,36,.05), transparent); }
#services .service-title { color: #0a0a0a; }
#services .service-desc  { color: #666677; }
.service-pole {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}
.services-cta { text-align: center; margin-top: 3rem; }

/* ── Portfolio amélioré ── */
.portfolio-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-family: 'Celebes', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: .28rem .7rem;
}
.portfolio-item-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin-top: .35rem;
}
/* ── Infinity : section claire ── */
#infinity .section-title  { color: #0a0a0a; }
#infinity .section-desc,
#infinity .infinity-note  { color: #55556a; }
#infinity .pricing-card   { background: #fff; border-color: rgba(0,0,0,.1); }
#infinity .pricing-name   { color: #888899; }
#infinity .pricing-price  { color: #0a0a0a; }
#infinity .pricing-period { color: #888899; }
#infinity .pricing-divider { background: rgba(0,0,0,.08); }
#infinity .pricing-feature { color: #333344; }
#infinity .pricing-cancel  { color: #aaaaaa; }
#infinity .btn-outline     { color: var(--red); border-color: var(--red); }

/* ── About redesign ── */
.about-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3.5rem;
}
.about-title {
  font-family: 'Celebes', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.about-lead {
  color: rgba(255,255,255,.52);
  line-height: 1.85;
  font-size: 1rem;
}
.about-mvp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all .3s;
}
.mvp-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(227,30,36,.3);
  transform: translateY(-3px);
}
.mvp-label {
  font-family: 'Celebes', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mvp-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.mvp-text {
  font-size: .9rem;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
}
@media (max-width: 768px) { .about-mvp { grid-template-columns: 1fr; } }

/* ── Footer ── */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-family: 'Celebes', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .65rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1.25rem;
  transition: background .2s, transform .2s;
}
.footer-wa-btn:hover { background: #1ebe5b; transform: translateY(-1px); }

/* ── Bouton WhatsApp flottant ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

.portfolio-note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'Celebes', sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  padding: 1.25rem 2rem;
  background: var(--red-dim);
  border: 1px solid var(--red);
  border-radius: .75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
