/* ═══════════════════════════════════════════════════════════
   CLÉMENT PAYET — PREMIUM WEB DESIGN PORTFOLIO
   Direction artistique : Dark Prestige
   ═══════════════════════════════════════════════════════════ */

/* ──────────────────────── DESIGN TOKENS ────────────────────────── */
:root {
  --bg:           #06060D;
  --bg-surface:   #0E0E1C;
  --bg-card:      #111122;
  --bg-elevated:  #17172C;

  --gold:         #C9A84C;
  --gold-bright:  #E2BB5C;
  --gold-dim:     rgba(201, 168, 76, 0.10);
  --gold-border:  rgba(201, 168, 76, 0.20);

  --purple:       #7B5FE8;
  --purple-dim:   rgba(123, 95, 232, 0.12);

  --text:         #F0EAE0;
  --text-2:       #9090A8;
  --text-3:       #5A5A70;

  --border:       rgba(255, 255, 255, 0.055);
  --border-h:     rgba(255, 255, 255, 0.11);

  --radius-s:     8px;
  --radius-m:     14px;
  --radius-l:     22px;
  --radius-xl:    32px;

  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold:  0 8px 40px rgba(201, 168, 76, 0.18);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:   cubic-bezier(0.65, 0, 0.35, 1);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) { body { cursor: auto; } }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: none; font: inherit; color: inherit; }
@media (max-width: 768px) { button { cursor: pointer; } }

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ──────────────────────── CUSTOM CURSOR ────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: normal; }
.cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.35s, background 0.2s;
}
.cursor.is-hovering .cursor-ring {
  width: 56px; height: 56px;
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.8);
}
.cursor.is-hovering .cursor-dot {
  width: 8px; height: 8px;
}
@media (max-width: 768px) { .cursor { display: none; } }

/* ──────────────────────── GRAIN OVERLAY ────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.032;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ──────────────────────── LAYOUT ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.d-br { display: none; }
@media (min-width: 900px) { .d-br { display: block; } }

/* ──────────────────────── TYPOGRAPHY ──────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-2);
  line-height: 1.75;
  text-align: center;
}

/* ──────────────────────── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: #09090F;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  color: var(--text-2);
  border: 1.5px solid var(--border-h);
  background: transparent;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }

.btn-outline {
  color: var(--text-2);
  border: 1.5px solid var(--border-h);
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold-border); transform: translateY(-2px); }

.btn-nav {
  background: var(--gold);
  color: #09090F;
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
}
.btn-nav:hover { background: var(--gold-bright); }

.w-full { width: 100%; justify-content: center; }

/* ──────────────────────── NAVIGATION ──────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.45s, padding 0.45s, box-shadow 0.45s;
}

.nav.scrolled {
  background: rgba(6, 6, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--gold);
  color: #09090F;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-logo-name { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: left 0.35s var(--ease-out), right 0.35s var(--ease-out);
  border-radius: 2px;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { left: 12px; right: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 13, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--text-2);
  padding: 0.5rem;
  transition: color 0.2s;
  cursor: pointer;
}
.mobile-menu-close:hover { color: var(--text); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s, transform 0.25s;
  transform: translateY(20px);
  opacity: 0;
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-link:hover { color: var(--text); }
.mobile-cta { color: var(--gold) !important; }

/* ──────────────────────── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,95,232,0.12) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.825rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
}

.badge-pulse {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.hero-title-em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-h);
}

/* Hero visual / mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 80px rgba(201,168,76,0.06);
  position: relative;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots i {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-h);
}
.mockup-dots i:nth-child(1) { background: #FF5F57; }
.mockup-dots i:nth-child(2) { background: #FFBD2E; }
.mockup-dots i:nth-child(3) { background: #28C840; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
}

.mockup-screen { padding: 1rem; }

.mock-nav-strip {
  height: 32px;
  background: var(--bg-elevated);
  border-radius: var(--radius-s);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.mock-hero-zone {
  height: 120px;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.mock-line {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.mock-line.l-wide { width: 90%; }
.mock-line.l-mid { width: 70%; }
.mock-line.l-short { width: 45%; }

.mock-img-zone {
  width: 80px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(123,95,232,0.2));
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
}

.mock-cards-row {
  display: flex;
  gap: 0.5rem;
}

.mock-card {
  flex: 1;
  height: 60px;
  background: var(--bg-elevated);
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
}

.mock-card.mc-accent {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

/* Floating badges */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(14, 14, 28, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-m);
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
}

.float-icon {
  font-size: 1rem;
  color: var(--gold);
}
.float-label {
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.float-val {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}

.f-perf {
  top: -20px;
  right: -30px;
  animation: floatY 6s ease-in-out infinite;
}
.f-conv {
  bottom: 30px;
  left: -40px;
  animation: floatY 8s ease-in-out infinite 1s;
}
.f-del {
  top: 45%;
  right: -50px;
  animation: floatY 7s ease-in-out infinite 0.5s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-border), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ──────────────────────── STRIP ─────────────────────────────────── */
.strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0;
}

.strip-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1rem 0;
  white-space: nowrap;
  animation: stripScroll 28s linear infinite;
  font-size: 0.85rem;
  color: var(--text-3);
}

.s-dot { color: var(--gold); opacity: 0.5; }

@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────── REVEAL ANIMATION ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────── SERVICES ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2.25rem;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

.svc-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.svc-card:hover::before { opacity: 1; }

.svc-featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), var(--bg-card));
}

.svc-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: #09090F;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.svc-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-m);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.svc-card p {
  font-size: 0.925rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.svc-list {
  margin-bottom: 1.5rem;
}
.svc-list li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.svc-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.svc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.25s, opacity 0.25s;
}
.svc-link:hover { gap: 0.75rem; }

/* ──────────────────────── WHY ME ───────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-points { margin-top: 2.5rem; }

.why-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.why-point:last-child { border-bottom: none; }

.why-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  padding-top: 0.2rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.why-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.why-body p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Why card */
.why-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-avatar {
  width: 52px; height: 52px;
  background: var(--gold);
  color: #09090F;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.why-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.why-role {
  font-size: 0.8rem;
  color: var(--text-3);
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.why-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-2);
}

.why-bars { display: flex; flex-direction: column; gap: 0.85rem; }

.why-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-2);
}
.why-bar-row > span:first-child { min-width: 130px; }
.why-bar-row > span:last-child { min-width: 32px; text-align: right; color: var(--text-3); }

.bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 100px;
  transition: width 1.2s var(--ease-out);
}
.bar-fill.animated { width: var(--w); }

/* Testimonial */
.why-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 1.75rem 2rem;
}

.t-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.why-testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.why-testimonial cite {
  font-size: 0.8rem;
  color: var(--text-3);
  font-style: normal;
}

/* ──────────────────────── PORTFOLIO ────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.port-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
  grid-column: span 6;
}
.port-item:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.port-large { grid-column: span 7; }
.port-large:nth-child(4) { grid-column: span 7; }
.port-item:nth-child(2) { grid-column: span 5; }
.port-item:nth-child(3) { grid-column: span 5; }

.port-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.pv-top-bar {
  display: flex;
  gap: 5px;
  padding: 0.65rem 0.85rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.pv-top-bar i {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-h);
}
.pv-top-bar i:nth-child(1) { background: #FF5F57; }
.pv-top-bar i:nth-child(2) { background: #FFBD2E; }
.pv-top-bar i:nth-child(3) { background: #28C840; }

.pv-inner { padding: 0.85rem; height: calc(100% - 32px); overflow: hidden; }
.dark-inner { background: #0A0A14; }

.pv-nav-strip {
  height: 22px;
  background: rgba(255,255,255,0.04);
  border-radius: 5px;
  margin-bottom: 0.75rem;
}

.pv-hero-sim {
  display: flex;
  gap: 0.75rem;
  height: 80px;
  margin-bottom: 0.75rem;
}

.pv-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.pv-ln {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}
.pv-ln.lg { width: 88%; }
.pv-ln.md { width: 65%; }
.pv-ln.sm { width: 45%; }
.pv-ln.white { background: rgba(255,255,255,0.18); }

.pv-cta-sim {
  height: 20px;
  width: 80px;
  background: rgba(201,168,76,0.25);
  border-radius: 100px;
  margin-top: 0.25rem;
}
.pv-cta-sim.gold { background: var(--gold); opacity: 0.7; }

.pv-img-col {
  width: 90px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pv-row-cards {
  display: flex;
  gap: 0.5rem;
}
.pv-rc {
  flex: 1;
  height: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.pv-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  height: 100%;
}
.pv-prod {
  border-radius: 8px;
  border: 1px solid var(--border);
}

.pv-lp-hero {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.pv-lp-proof {
  height: 30px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.pv-dash-layout {
  display: flex;
  height: 100%;
  gap: 0.5rem;
}
.pv-sidebar-sim {
  width: 50px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.pv-dash-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pv-stats-row {
  display: flex;
  gap: 0.5rem;
}
.pv-stat-box {
  flex: 1;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.pv-chart {
  flex: 1;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Gradient utilities */
.warm-grad { background: linear-gradient(135deg, #2C1810, #5C3520); }
.cool-grad { background: linear-gradient(135deg, #0F1B2E, #1A2F4A); }
.neutral-grad { background: linear-gradient(135deg, #1A1A1E, #2E2E36); }
.purple-grad { background: linear-gradient(135deg, #1A0F2E, #2E1A5C); }

.port-info {
  padding: 1.5rem 1.75rem;
}
.port-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.port-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.port-info p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.port-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.port-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-2);
}

/* ──────────────────────── PROCESS ──────────────────────────────── */
.process-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-line-track {
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}

.process-line-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--purple));
  border-radius: 2px;
  transition: height 0.1s;
}

.process-steps { display: flex; flex-direction: column; }

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }

.ps-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: border-color 0.4s, background 0.4s;
}

.process-step:hover .ps-num {
  border-color: var(--gold-border);
  background: var(--gold-dim);
}

.ps-body { flex: 1; padding-top: 0.85rem; }

.ps-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.ps-body p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.ps-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ps-meta span {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ──────────────────────── PRICING ──────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2.25rem;
  position: relative;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.pricing-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pc-featured {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(201,168,76,0.07), var(--bg-card));
  box-shadow: 0 0 60px rgba(201,168,76,0.08);
  transform: translateY(-12px);
}
.pc-featured:hover { transform: translateY(-18px); }

.pc-popular {
  background: var(--gold);
  color: #09090F;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.pc-header { margin-bottom: 1.5rem; }

.pc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.pc-tagline {
  font-size: 0.85rem;
  color: var(--text-3);
}

.pc-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.pc-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.pc-ht {
  font-size: 0.8rem;
  color: var(--text-3);
}

.pc-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.pc-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pc-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.pc-features li::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 50%;
}
.f-yes {
  color: var(--text-2);
}
.f-yes::before {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='rgba(201,168,76,0.12)' stroke='rgba(201,168,76,0.3)'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23C9A84C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat !important;
}
.f-no {
  color: var(--text-3);
}
.f-no::before {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' fill='rgba(255,255,255,0.03)' stroke='rgba(255,255,255,0.06)'/%3E%3Cpath d='M5.5 10.5l5-5M10.5 10.5l-5-5' stroke='rgba(255,255,255,0.2)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat !important;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.5rem;
  margin-top: 2.5rem;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.6;
}
.pricing-note svg { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.pricing-note strong { color: var(--text); }

/* ──────────────────────── FAQ ───────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s;
  cursor: pointer;
}
.faq-q:hover { color: var(--gold); }

.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon b {
  position: absolute;
  display: block;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.faq-icon b:first-child { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon b:last-child { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.faq-item.open .faq-icon b:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease-out), padding 0.4s;
}
.faq-a p {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ──────────────────────── CONTACT ──────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-infos {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon {
  width: 40px; height: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
a.ci-value:hover { color: var(--gold); }

.avail-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #22D36A;
  border-radius: 50%;
  animation: avPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(34,211,106,0.4);
}
.avail-dot.unavailable {
  background: #EF4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.4);
  animation: avPulseRed 2s ease-in-out infinite;
}
@keyframes avPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,106,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,211,106,0); }
}
@keyframes avPulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

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

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(34,211,106,0.12);
  color: #22D36A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.03em;
}

input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-m);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-3); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-border);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A70' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
select option { background: var(--bg-card); color: var(--text); }

textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { margin-top: 1.5rem; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 1rem;
}

/* ──────────────────────── FOOTER ───────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.7;
}

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

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.825rem; color: var(--text-3); }
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.825rem;
  color: var(--text-3);
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--text-2); }

.footer-team-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.2) !important;
  transition: color 0.3s !important;
  letter-spacing: 0.03em;
}
.footer-team-link:hover { color: rgba(201,168,76,0.5) !important; }
.footer-team-link svg { opacity: 0.6; }

/* ──────────────────────── TEAM LOGIN MODAL ─────────────────────── */
.team-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 1rem;
}
.team-modal-overlay.active {
  display: flex;
}

.team-modal {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.05);
}

.team-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-2);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.team-modal-close:hover { background: rgba(255,255,255,0.1); color: var(--text); }

.team-modal-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.team-modal-title {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.team-modal-sub {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 2rem;
}

.team-login-form { display: flex; flex-direction: column; gap: 1.1rem; }

.team-form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.team-form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.team-form-group input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}
.team-form-group input:focus {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.04);
}
.team-form-group input::placeholder { color: var(--text-3); }

.team-input-wrap { position: relative; }
.team-input-wrap input { padding-right: 3rem; }
.team-toggle-pw {
  position: absolute;
  right: 0.9rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-3); cursor: pointer;
  display: flex; align-items: center;
  transition: color 0.2s;
  padding: 0;
}
.team-toggle-pw:hover { color: var(--text-2); }

.team-error {
  font-size: 0.8rem;
  color: #E85F5F;
  min-height: 1rem;
  margin-top: -0.25rem;
}

.team-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s, background 0.3s;
  margin-top: 0.25rem;
}
.team-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.team-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.team-modal-note {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.team-modal-note::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ──────────────────────── BACK TO TOP ──────────────────────────── */
.btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-h);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-2);
  z-index: 100;
  transition: all 0.35s var(--ease-out);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  cursor: pointer;
}
.btt.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.btt:hover {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ──────────────────────── MAGNETIC BUTTON ──────────────────────── */
.magnetic { transition: transform 0.3s var(--ease-out), background 0.35s, border-color 0.35s, box-shadow 0.35s; }

/* ──────────────────────── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-item, .port-large { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .pc-featured { transform: none; }
  .pc-featured:hover { transform: translateY(-4px); }
  .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-stat-sep { display: none; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-cols { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .why-bars .why-bar-row > span:first-child { min-width: 100px; }
  .f-perf { top: -10px; right: -10px; }
  .f-conv { display: none; }
  .f-del { display: none; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 500px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ──────────────────────── COOKIE BANNER ──────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: min(680px, calc(100vw - 2rem));
  background: var(--bg-elevated);
  border: 1px solid var(--border-h);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.cookie-text {
  flex: 1;
}
.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-refuse {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-btn-refuse:hover {
  border-color: var(--border-h);
  color: var(--text-primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    bottom: 1rem;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-refuse { flex: 1; text-align: center; }
}
