/* ============================================================
   EYE-D STUDIO — Main Stylesheet
   ============================================================ */

:root {
  --bg:            #060608;
  --bg-soft:       #0b0914;
  --bg-card:       #0d0b14;
  --purple:        #7c3aed;
  --purple-light:  #a855f7;
  --pink:          #c026d3;
  --text:          #f5f5f7;
  --text-dim:      #8b8899;
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(255, 255, 255, 0.14);
  --gradient:      linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  --glow-purple:   0 0 32px rgba(124, 58, 237, 0.45);
  --radius:        14px;
  --header-h:      68px;
}

/* ---- LIGHT MODE (jour) ---- */
body.light-mode {
  --bg:            #f5f5f7;
  --bg-soft:       #ffffff;
  --bg-card:       #ffffff;
  --text:          #0b0a10;
  --text-dim:      #5a5867;
  --border:        rgba(0, 0, 0, 0.09);
  --border-hover:  rgba(0, 0, 0, 0.18);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #6366f1 100%);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, gap 0.25s ease;
}

.btn-primary::before {
  content: "";
  width: 0;
  height: 10px;
  border-radius: 50%;
  background: #ef3b3b;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.4);
  transition: width 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #16141c;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover::before {
  width: 10px;
  opacity: 1;
  transform: scale(1);
}

.btn-white {
  background: #fff;
  color: #111;
}

.btn-white:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: linear-gradient(180deg, #050006 0%, #0a0710 70%, #1b0c30 100%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  overflow: hidden;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(168,85,247,0.45) 0%, rgba(168,85,247,0) 100%);
  pointer-events: none;
}

.site-header.scrolled {
  background: linear-gradient(180deg, #050006 0%, #0a0710 60%, #271049 100%);
}

body.light-mode .site-header {
  background: linear-gradient(180deg, #ffffff 0%, #f7f2fd 70%, #ece1fb 100%);
}

body.light-mode .site-header.scrolled {
  background: linear-gradient(180deg, #ffffff 0%, #f3eafe 60%, #e2cffa 100%);
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1.5rem;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-mark-img { height: 30px; width: auto; display: block; }
body.light-mode .logo-mark-img { filter: invert(1); }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.main-nav > a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.main-nav > a:hover { color: var(--text); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}
.dropdown-toggle:hover { color: var(--text); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  background: #13111c;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 130px;
  padding: 0.35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover {
  background: rgba(168, 85, 247, 0.12);
  color: var(--text);
}

/* Theme toggle (jour / nuit) */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  border-color: var(--border-hover);
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

body.light-mode .theme-toggle .icon-sun { display: block; }
body.light-mode .theme-toggle .icon-moon { display: none; }

/* Language toggle (FR / EN flag) */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0c0c12;
  border: 2px solid #2f6bff;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 0 14px rgba(47, 107, 255, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lang-toggle[data-lang="en"] {
  border-color: #ff3b3b;
  box-shadow: 0 0 14px rgba(255, 59, 59, 0.45);
}

body.light-mode .lang-toggle {
  background: #fff;
}

.lang-toggle .flag {
  display: none;
}

/* data-lang="fr" -> currently French, show the EN flag to switch to English */
.lang-toggle[data-lang="fr"] .flag-gb { display: block; }
.lang-toggle[data-lang="en"] .flag-fr { display: block; }

/* Mobile toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.2rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(6, 6, 8, 0.97);
}

.mobile-nav.open {
  display: flex;
}

@media (min-width: 810px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 0.4rem 0;
  width: 100%;
}
.mobile-nav a.btn {
  margin-top: 0.5rem;
  width: auto;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.section-title.center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-subtitle.center {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-eyebrow.center { justify-content: center; }

.dash {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ============================================================
   TRUST / BRANDS
   ============================================================ */
.trust-section {
  background: var(--bg);
  padding: 7rem 1.5rem;
}

.brand-grid {
  max-width: 1060px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.8rem 0.8rem;
  text-align: center;
}

.brand {
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: default;
}
.brand:hover { color: rgba(255,255,255,0.8); }

.cta-row {
  max-width: 1100px;
  margin: 0 auto 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.cta-text {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}

.cta-text strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.stat { display: flex; flex-direction: column; gap: 0.3rem; }

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.stat-label {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--bg);
  padding: 7rem 1.5rem;
}

.services-section .section-eyebrow,
.services-section .section-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.services-section .section-eyebrow {
  justify-content: flex-start;
}

.services-section .section-title.center {
  margin-bottom: 3rem;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  grid-template-areas:
    "music music brands social"
    "saas cgi cgi social";
  gap: 0.8rem;
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-desc {
  position: relative;
  z-index: 1;
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.6rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.service-card:hover .card-desc {
  max-height: 6rem;
  opacity: 1;
}

.img-card.music   { grid-area: music; }
.img-card.brands  { grid-area: brands; }
.img-card.social  { grid-area: social; }
.img-card.saas    { grid-area: saas; }
.img-card.cgi     { grid-area: cgi; }

.card-title {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.65) 100%);
}

.img-card.music  { background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%), url('images/or-noir-kaaris.png') center/cover no-repeat; }
.img-card.brands { background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%), url('images/nike-cami.png') center/cover no-repeat; }
.img-card.social { background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%), url('images/capture-2026-06-17.png') center/cover no-repeat; }
.img-card.saas   { background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%), url('images/wakup-logo-art.webp') center/cover no-repeat; }
.img-card.cgi    { background: linear-gradient(160deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%), url('images/oksana.webp') center/cover no-repeat; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  background: var(--bg-soft);
  padding: 7rem 1.5rem;
}

.about-intro {
  max-width: 1100px;
  margin: 0 auto 7rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-text { display: flex; flex-direction: column; gap: 1.2rem; }

.about-lead {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
}

.about-body {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-section > .section-eyebrow,
.about-section > .section-title,
.about-section > .section-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.globe-wrap {
  display: flex;
  justify-content: center;
  margin: 3.5rem 0 5rem;
}

.globe {
  width: 380px;
  height: 190px;
  border-radius: 380px 380px 0 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  border-bottom: none;
  background:
    radial-gradient(circle at 50% 105%, rgba(124, 58, 237, 0.3), transparent 65%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    #0a0812;
}

.globe::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.06);
}

.globe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 115%, rgba(124,58,237,0.5), transparent 55%);
}

.features-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--purple-light);
}

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================================
   EXPERTISE
   ============================================================ */
.expertise-section {
  background: var(--bg);
  padding: 7rem 1.5rem;
}

.expertise-section .section-title.center {
  margin-bottom: 3.5rem;
}

.expertise-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}

.expertise-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.expertise-card.highlighted {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.12);
}

.expertise-media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.expertise-media-1 {
  background: linear-gradient(145deg, #3e3040 0%, #1a0e26 100%);
}
.expertise-media-2 {
  background: linear-gradient(145deg, #1a2e30 0%, #080e10 100%);
}
.expertise-media-3 {
  background: linear-gradient(145deg, #301020 0%, #100608 100%);
}

.expertise-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  margin-bottom: 0.6rem;
  opacity: 0.7;
}

.expertise-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.expertise-body > p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.expertise-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.expertise-details p {
  color: var(--text-dim);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.learn-more:hover {
  border-color: var(--purple-light);
  background: rgba(168, 85, 247, 0.1);
}

.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background: var(--bg-soft);
  padding: 7rem 1.5rem;
}

.process-section .section-title.center {
  margin-bottom: 3rem;
}

.process-grid {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.process-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.process-card:nth-child(1),
.process-card:nth-child(3) {
  background: var(--gradient);
  border-color: transparent;
}

.process-card:nth-child(1) h3,
.process-card:nth-child(3) h3 {
  color: #fff;
}

.process-card:nth-child(1) p,
.process-card:nth-child(3) p {
  color: rgba(255,255,255,0.85);
}

.process-icon {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.process-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Custom CTA */
.custom-cta {
  max-width: 1100px;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.custom-cta-text {
  background: #0a0910;
  padding: 2.8rem;
  transition: background 0.3s ease;
}

body.light-mode .custom-cta-text {
  background: #ffffff;
}

body.light-mode .custom-cta-text h3,
body.light-mode .custom-cta-list li strong {
  color: #0b0a10;
}

body.light-mode .custom-cta-subtitle,
body.light-mode .custom-cta-list li {
  color: #5a5867;
}

.custom-cta-text h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.custom-cta-subtitle {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.custom-cta-included {
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.custom-cta-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.custom-cta-list li {
  border-left: 2px solid var(--purple-light);
  padding-left: 0.9rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.custom-cta-list li strong { color: var(--text); }

.custom-cta-visual {
  background: var(--gradient);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  min-height: 320px;
  gap: 1rem;
}

.custom-badge {
  align-self: flex-start;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.custom-logo {
  width: 100%;
  max-width: 260px;
  flex: 1;
}

.custom-logo-text {
  font-family: "Arial Black", "Helvetica Neue", Impact, sans-serif;
  font-size: 130px;
  font-weight: 900;
  font-style: italic;
  fill: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--bg);
  padding: 7rem 1.5rem;
}

.faq-section .section-title.center {
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: rgba(168, 85, 247, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  transition: color 0.15s;
}

.faq-question:hover { color: var(--purple-light); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 0 1.4rem 1.3rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--bg-soft);
  padding: 7rem 1.5rem;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-left { padding-top: 0.5rem; }

.contact-left .section-eyebrow { margin-bottom: 1.5rem; }

.contact-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.contact-left > p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--text); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  background: rgba(168, 85, 247, 0.06);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 1.5rem;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  width: 480px;
  height: 240px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, rgba(124, 58, 237, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: footerGlow 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

body.light-mode .site-footer::before {
  mix-blend-mode: multiply;
  opacity: 0.7;
}

@keyframes footerGlow {
  0%   { transform: translate(-50%, 0) scale(1); }
  50%  { transform: translate(-30%, 10%) scale(1.25); }
  100% { transform: translate(-50%, 0) scale(1); }
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo-mark {
  width: 32px;
  height: 26px;
  color: rgba(255,255,255,0.7);
}

body.light-mode .footer-logo-mark { color: rgba(0,0,0,0.7); }

.footer-brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

body.light-mode .footer-brand-name { color: rgba(0,0,0,0.7); }

.footer-columns {
  display: flex;
  gap: 4rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-column h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.footer-column a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-column a:hover { color: var(--text); }
body.light-mode .footer-column a { color: rgba(0,0,0,0.45); }
body.light-mode .footer-column a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text); }
body.light-mode .footer-bottom { color: rgba(0,0,0,0.35); }
body.light-mode .footer-bottom a { color: rgba(0,0,0,0.55); }
body.light-mode .footer-bottom a:hover { color: var(--text); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .site-header .btn { display: none; }
  .mobile-menu-btn { display: flex; }

  .brand-grid { grid-template-columns: repeat(3, 1fr); }

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

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
  }
  .img-card.music, .img-card.brands, .img-card.social, .img-card.saas, .img-card.cgi {
    grid-area: auto;
    min-height: 200px;
  }

  .about-intro { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .features-grid { grid-template-columns: 1fr; }

  .expertise-card { grid-template-columns: 1fr; }
  .expertise-details { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }
  .custom-cta { grid-template-columns: 1fr; }

  .cta-row { flex-direction: column; align-items: flex-start; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-columns { gap: 2rem; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-columns { flex-direction: column; gap: 1.5rem; }
}
