/* ============================================================
   PTV – Pour Ta Visibilité  |  styles.css
   Design System: Space Grotesk + Inter | Purple/Cyan palette
   ============================================================ */

/* === VARIABLES === */
:root {
  --clr-p:      #7C3AED;
  --clr-p2:     #5B21B6;
  --clr-p-lt:   #8B5CF6;
  --clr-c:      #0EA5E9;
  --clr-pink:   #EC4899;
  --clr-green:  #10B981;
  --grad:        linear-gradient(135deg, #7C3AED 0%, #0EA5E9 100%);
  --grad-warm:   linear-gradient(135deg, #EC4899 0%, #7C3AED 100%);

  /* Light mode */
  --bg:         #FAFBFF;
  --bg-alt:     #F1F3FF;
  --bg-card:    #FFFFFF;
  --txt:        #0A0A1F;
  --txt-2:      #4B5563;
  --txt-3:      #9CA3AF;
  --border:     #E5E7EB;
  --shadow:     0 4px 24px rgba(124,58,237,.08);
  --shadow-lg:  0 12px 48px rgba(124,58,237,.16);
  --nav-bg:     rgba(250,251,255,.92);

  --ff-head: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --radius:  14px;
  --radius-lg: 24px;
  --tr: all .3s cubic-bezier(.4,0,.2,1);
  --tr-slow: all .6s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg:       #080818;
  --bg-alt:   #0D0D26;
  --bg-card:  #111130;
  --txt:      #E2E8F0;
  --txt-2:    #94A3B8;
  --txt-3:    #64748B;
  --border:   rgba(124,58,237,.2);
  --shadow:   0 4px 24px rgba(0,0,0,.5);
  --shadow-lg:0 12px 48px rgba(0,0,0,.6);
  --nav-bg:   rgba(8,8,24,.92);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }
.bg-alt { background: var(--bg-alt); }

.g-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-text-light {
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.g-bg { background: var(--grad); }

/* Section header */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(124,58,237,.12);
  color: var(--clr-p);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-sub {
  color: var(--txt-2);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 64px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--tr);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,.5); }
.btn-ghost {
  background: transparent;
  color: var(--txt);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--clr-p); color: var(--clr-p); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--clr-p);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }
.btn-nav {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--tr);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,58,237,.4); }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .05em;
}
.logo-name { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--txt-2);
  transition: var(--tr);
}
.nav-links a:hover { color: var(--clr-p); background: rgba(124,58,237,.08); }

.nav-controls { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  color: var(--txt-2);
  font-size: 1rem;
  transition: var(--tr);
  border: 1px solid var(--border);
}
.theme-toggle:hover { color: var(--clr-p); border-color: var(--clr-p); }

.lang-switch { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--txt-3); }
.lang-btn { padding: 4px 8px; border-radius: 6px; font-weight: 600; color: var(--txt-3); transition: var(--tr); }
.lang-btn.active { background: var(--grad); color: #fff; }
.lang-btn:not(.active):hover { color: var(--clr-p); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: var(--tr);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(124,58,237,.25); top: -200px; right: -150px; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(14,165,233,.2); bottom: -100px; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(236,72,153,.15); top: 40%; left: 40%; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25);
  color: var(--clr-p); font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-sub { font-size: 1.1rem; color: var(--txt-2); margin-bottom: 40px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--txt-2); font-weight: 500;
}
.trust-pill i { color: var(--clr-green); }

/* Browser mockup */
.hero-visual { position: relative; }
.browser-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot.r { background: #FF5F57; }
.dot.y { background: #FEBC2E; }
.dot.g { background: #28C840; }
.browser-url {
  flex: 1; padding: 4px 12px; border-radius: 6px;
  background: var(--bg); font-size: .75rem; color: var(--txt-3);
  border: 1px solid var(--border);
}
.browser-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mock-nav-bar {
  height: 36px; border-radius: 8px;
  background: var(--bg-alt);
}
.mock-hero-block { display: flex; flex-direction: column; gap: 12px; padding: 12px; }
.mock-lines { display: flex; flex-direction: column; gap: 8px; }
.mock-line {
  height: 10px; border-radius: 100px;
  background: var(--bg-alt);
}
.mock-line.w80 { width: 80%; }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }
.mock-line.g-bg { background: var(--grad); opacity: .7; }
.mock-btns { display: flex; gap: 10px; margin-top: 8px; }
.mock-btn { height: 28px; border-radius: 100px; }
.mock-btn.g-bg { width: 110px; background: var(--grad); }
.mock-btn.outline { width: 90px; border: 2px solid var(--border); }
.mock-cards-row { display: flex; gap: 10px; }
.mock-card-item {
  flex: 1; padding: 12px; border-radius: var(--radius);
  background: var(--bg-alt); display: flex; gap: 8px; align-items: flex-start;
}
.mci-icon { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
.mci-icon.g-bg { background: var(--grad); }
.mci-lines { flex: 1; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }

/* Floating cards */
.float-card {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 140px;
  animation: float 4s ease-in-out infinite;
}
.float-card i { color: var(--clr-p); font-size: 1.3rem; }
.float-card b { display: block; font-size: 1.1rem; font-weight: 800; font-family: var(--ff-head); }
.float-card small { font-size: .72rem; color: var(--txt-2); }
.fc1 { top: -20px; right: -20px; animation-delay: 0s; }
.fc2 { bottom: 20px; right: -30px; animation-delay: 1.3s; }
.fc3 { bottom: -20px; left: 10px; animation-delay: 2.6s; }

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

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { padding: 48px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--ff-head); font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-sfx { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--clr-p); }
.stat-lbl { display: block; font-size: .85rem; color: var(--txt-2); font-weight: 500; margin-top: 4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-blob {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: var(--grad); opacity: .08; filter: blur(60px);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.about-icon-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  position: relative; z-index: 1;
}
.aig-cell {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 1.5rem;
  color: var(--txt-3);
  transition: var(--tr);
  box-shadow: var(--shadow);
}
.aig-cell:hover { transform: scale(1.08); color: var(--clr-p); border-color: rgba(124,58,237,.4); }
.aig-cell.accent { color: var(--clr-c); }
.aig-cell.main { background: var(--grad); color: #fff; border: none; font-size: 1.8rem; }

.about-vals { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 36px; }
.val-item { display: flex; gap: 16px; align-items: flex-start; }
.val-item > i { font-size: 1.2rem; color: var(--clr-p); margin-top: 3px; flex-shrink: 0; }
.val-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.val-item p { font-size: .9rem; color: var(--txt-2); margin: 0; }
.about-content > p { color: var(--txt-2); margin-bottom: 16px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s ease;
}
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.srv-card:hover::before { opacity: .04; }
.srv-card > * { position: relative; z-index: 1; }
.srv-card.featured {
  border-color: rgba(124,58,237,.5);
  box-shadow: 0 0 0 2px rgba(124,58,237,.15), var(--shadow-lg);
}
.srv-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--grad); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
}
.srv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.1);
  color: var(--clr-p); font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--tr);
}
.srv-card:hover .srv-icon { background: var(--grad); color: #fff; }
.srv-card h3 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.srv-card p { color: var(--txt-2); font-size: .92rem; margin-bottom: 20px; }
.srv-feats { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.srv-feats li { font-size: .88rem; color: var(--txt-2); padding-left: 20px; position: relative; }
.srv-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--clr-green); font-weight: 700; }
.srv-cta { color: var(--clr-p); font-weight: 600; font-size: .9rem; transition: var(--tr); }
.srv-cta:hover { gap: 4px; opacity: .8; }
.srv-cta-card { background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.srv-cta-card::before { display: none; }
.srv-cta-inner { text-align: center; }
.srv-cta-inner > i { font-size: 3rem; margin-bottom: 20px; opacity: .9; }
.srv-cta-inner h3 { font-size: 1.3rem; margin-bottom: 12px; }
.srv-cta-inner p { opacity: .85; margin-bottom: 24px; }

/* ============================================================
   FOR WHO
   ============================================================ */
.fw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fw-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 28px;
  text-align: center; transition: var(--tr);
}
.fw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fw-card.featured { background: var(--grad); color: #fff; border: none; }
.fw-card.featured p, .fw-card.featured li { color: rgba(255,255,255,.85) !important; }
.fw-icon {
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.1);
  color: var(--clr-p); font-size: 1.8rem;
  margin: 0 auto 24px;
}
.fw-card.featured .fw-icon { background: rgba(255,255,255,.2); color: #fff; }
.fw-card h3 { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.fw-card p { color: var(--txt-2); font-size: .92rem; margin-bottom: 20px; }
.fw-card ul { margin-bottom: 28px; display: flex; flex-direction: column; gap: 8px; }
.fw-card li { font-size: .88rem; color: var(--txt-2); }
.fw-card li::before { content: '→ '; font-weight: 700; color: var(--clr-p); }
.fw-card.featured li::before { color: rgba(255,255,255,.8); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.pf-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.pf-btn {
  padding: 10px 22px; border-radius: 100px;
  font-weight: 600; font-size: .86rem;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--txt-2); transition: var(--tr);
}
.pf-btn:hover, .pf-btn.active {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(124,58,237,.3);
}

/* Grid — 2 columns for richer cards */
.pf-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.pf-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--tr); display: flex; flex-direction: column;
}
.pf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,.25); }
.pf-card.hidden { display: none; }

/* Screenshot image */
.pf-img-wrap {
  position: relative; height: 240px; overflow: hidden;
  background: var(--bg-alt); flex-shrink: 0;
}
.pf-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.pf-card:hover .pf-img-wrap img { transform: scale(1.06); }

/* Overlay on hover */
.pf-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,40,.88) 0%, rgba(10,10,40,.25) 55%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px; opacity: 0; transition: opacity .3s ease;
}
.pf-card:hover .pf-img-overlay { opacity: 1; }
.pf-overlay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 100px;
  background: #fff; color: var(--clr-p);
  font-size: .85rem; font-weight: 700;
  transform: translateY(12px);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .25s, color .25s;
  white-space: nowrap;
}
.pf-card:hover .pf-overlay-btn { transform: translateY(0); }
.pf-overlay-btn:hover { background: var(--grad); color: #fff; }

/* Card body */
.pf-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.pf-body h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; }
.pf-body > p { font-size: .9rem; color: var(--txt-2); line-height: 1.65; }

/* Client type badges */
.pf-client-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; width: fit-content;
}
.badge-ngo     { background: rgba(16,185,129,.12);  color: #059669; }
.badge-biz     { background: rgba(14,165,233,.12);  color: #0284c7; }
.badge-brand   { background: rgba(124,58,237,.12);  color: var(--clr-p); }
.badge-mkt     { background: rgba(245,158,11,.12);  color: #d97706; }
[data-theme="dark"] .badge-ngo   { background: rgba(16,185,129,.2);  color: #34d399; }
[data-theme="dark"] .badge-biz   { background: rgba(14,165,233,.2);  color: #38bdf8; }
[data-theme="dark"] .badge-brand { background: rgba(139,92,246,.2);  color: var(--clr-p-lt); }
[data-theme="dark"] .badge-mkt   { background: rgba(245,158,11,.2);  color: #fbbf24; }

/* Services & Tech rows */
.pf-section-row { display: flex; flex-direction: column; gap: 7px; }
.pf-row-label {
  font-size: .72rem; font-weight: 700; color: var(--txt-3);
  letter-spacing: .07em; text-transform: uppercase;
}
.pf-tags { display: flex; gap: 6px; flex-wrap: wrap; }

/* Service tags — filled purple */
.pf-tag {
  padding: 4px 12px; border-radius: 100px;
  background: rgba(124,58,237,.1); color: var(--clr-p);
  font-size: .78rem; font-weight: 600; transition: var(--tr);
}
.pf-tag:hover { background: var(--grad); color: #fff; }

/* Tech tags — outline */
.pf-tech-tag {
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--txt-3);
  font-size: .78rem; font-weight: 500; background: transparent; transition: var(--tr);
}
.pf-tech-tag:hover { border-color: var(--clr-p); color: var(--clr-p); }

/* Visit button */
.pf-visit-btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   PROCESS
   ============================================================ */
.proc-list { display: flex; flex-direction: column; gap: 0; }
.proc-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  align-items: flex-start; padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.proc-step:last-child { border-bottom: none; }
.proc-num {
  font-family: var(--ff-head); font-size: 3rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.proc-body { display: flex; flex-direction: column; gap: 12px; }
.proc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.1); color: var(--clr-p); font-size: 1.2rem;
}
.proc-body h3 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; }
.proc-body p { color: var(--txt-2); font-size: .92rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: var(--tr);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(124,58,237,.3); }
.why-ico {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; margin-bottom: 20px;
}
.why-card h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--txt-2); font-size: .9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--tr); display: flex; flex-direction: column; gap: 20px;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-card.featured { border-color: rgba(124,58,237,.4); box-shadow: 0 0 0 2px rgba(124,58,237,.1), var(--shadow); }
.testi-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 3px; }
.testi-card p { color: var(--txt-2); font-size: .93rem; font-style: italic; flex: 1; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: .92rem; }
.testi-author span { font-size: .8rem; color: var(--txt-3); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { padding: 80px 0; }
.cta-card {
  background: var(--grad);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-orb-1 { width: 500px; height: 500px; background: rgba(255,255,255,.08); top: -200px; right: -200px; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(255,255,255,.06); bottom: -100px; left: -50px; }
.cta-content { position: relative; z-index: 1; }
.cta-card h2 { font-family: var(--ff-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: #fff; margin: 16px 0; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.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: 16px; padding: 22px 0; text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--txt);
  transition: var(--tr);
}
.faq-q:hover { color: var(--clr-p); }
.faq-ico { font-size: .8rem; color: var(--txt-3); transition: var(--tr); flex-shrink: 0; }
.faq-item.open .faq-ico { transform: rotate(45deg); color: var(--clr-p); }
.faq-a { display: none; padding-bottom: 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--txt-2); font-size: .93rem; line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.ct-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: flex-start; }
.ct-info-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; margin-bottom: 24px;
}
.ct-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.ct-item:last-child { border-bottom: none; }
.ct-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,.1); color: var(--clr-p); font-size: 1.1rem; flex-shrink: 0;
}
.ct-item strong { display: block; font-size: .85rem; color: var(--txt-3); margin-bottom: 2px; }
.ct-item a, .ct-item span { font-size: .92rem; font-weight: 500; color: var(--txt); }
.ct-item a:hover { color: var(--clr-p); }
.ct-social p { font-size: .85rem; color: var(--txt-2); font-weight: 600; margin-bottom: 12px; }

.social-row { display: flex; gap: 10px; }
.soc-lnk {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); border: 1px solid var(--border);
  color: var(--txt-3); font-size: .9rem; transition: var(--tr);
}
.soc-lnk:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* Form */
.ct-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
}
.ct-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grp { display: flex; flex-direction: column; gap: 8px; }
.form-grp label { font-size: .85rem; font-weight: 600; color: var(--txt-2); }
.form-grp input,
.form-grp select,
.form-grp textarea {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--txt);
  font-size: .93rem;
  font-family: var(--ff-body);
  transition: var(--tr);
  outline: none;
}
.form-grp input:focus,
.form-grp select:focus,
.form-grp textarea:focus { border-color: var(--clr-p); box-shadow: 0 0 0 3px rgba(124,58,237,.12); }
.form-grp textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 48px;
}
.form-success i { font-size: 3rem; color: var(--clr-green); margin-bottom: 16px; }
.form-success h3 { font-family: var(--ff-head); font-size: 1.4rem; margin-bottom: 8px; }
.form-success p { color: var(--txt-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--txt-2); font-size: .9rem; margin-bottom: 20px; max-width: 280px; }
.footer-col h4 { font-family: var(--ff-head); font-size: .9rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .88rem; color: var(--txt-2); transition: var(--tr); }
.footer-col a:hover { color: var(--clr-p); }
.footer-col span { font-size: .88rem; color: var(--txt-2); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .83rem; color: var(--txt-3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--txt-3); transition: var(--tr); }
.footer-bottom-links a:hover { color: var(--clr-p); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: var(--tr);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: var(--nav-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; border-radius: 0; font-size: 1rem; }
  .hamburger { display: flex; }
  .hero { padding: 90px 0 60px; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .fw-grid { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .pf-img-wrap { height: 200px; }
  .pf-body { padding: 20px 20px 24px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .ct-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .proc-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .proc-num { font-size: 2rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .about-icon-grid { gap: 10px; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .fc1, .fc2, .fc3 { display: none; }
  .hero-trust { flex-direction: column; gap: 10px; }
}
