﻿/* ============================================================
   PINK CODERS — Dark Theme
   ============================================================ */

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

:root {
  --pink:       #e5007d;
  --pink-glow:  rgba(229, 0, 125, 0.35);
  --pink-dim:   rgba(229, 0, 125, 0.12);
  --bg:         #0d0d0d;
  --bg2:        #111111;
  --bg3:        #161616;
  --border:     rgba(255,255,255,0.07);
  --text:       #f0f0f0;
  --muted:      #888;
  --white:      #ffffff;
  --green:      #00c853;
  --purple:     #8b5cf6;
  --blue:       #3b82f6;
  --font:       'Inter', sans-serif;
  --radius:     14px;
  --radius-lg:  20px;
}

html  { scroll-behavior: smooth; }
body  { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- LABEL ---------- */
.label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 12px;
}
.dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--pink); border-radius: 50%;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: transform .2s, opacity .2s, box-shadow .2s;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn--pink {
  background: var(--pink); color: var(--white);
  box-shadow: 0 0 20px var(--pink-glow);
}
.btn--pink:hover { box-shadow: 0 0 32px var(--pink-glow); }

.btn--outline-pink {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline-pink:hover { border-color: var(--pink); color: var(--pink); }

.btn--ghost {
  background: rgba(255,255,255,0.06); color: var(--white);
  border-color: rgba(255,255,255,0.1);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ---------- LINK ARROW ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--pink); font-size: 0.88rem; font-weight: 600;
  transition: gap .2s;
}
.link-arrow:hover { gap: 10px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex; align-items: center; gap: 32px; height: 84px;
}

.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; white-space: nowrap;
}
.logo__icon {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(229,0,125,0.18);
  border: 1.5px solid rgba(229,0,125,0.50);
  border-radius: 10px;
  padding: 8px 13px;
  font-size: 1.05rem; font-weight: 800;
  color: var(--pink);
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 0 14px rgba(229,0,125,0.25);
}
.logo__name {
  font-size: 1.35rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.4px;
}
.logo__dot  { color: var(--pink); }
.logo__pink { color: var(--pink); }

.nav { display: flex; gap: 4px; margin-left: auto; }

.nav__link {
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  padding: 6px 14px; border-radius: 6px;
  transition: color .2s, background .2s;
  position: relative;
}
.nav__link:hover { color: var(--white); }
.nav__link.active { color: var(--white); }
.nav__link.active::after {
  content: ''; position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--pink); border-radius: 2px;
}

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--text); margin-left: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #1e0012 0%, #110008 28%, #0a0006 55%, #0d0d0d 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* large pink blob top-left */
.hero::before {
  content: '';
  position: absolute; top: -220px; left: -180px;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(229,0,125,0.22) 0%, rgba(229,0,125,0.05) 45%, transparent 70%);
  pointer-events: none;
}

/* subtle purple glow top-right */
.hero::after {
  content: '';
  position: absolute; top: -60px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  display: flex; align-items: center; gap: 48px;
  position: relative; z-index: 2;
}

.hero__text { flex: 1; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-dim); border: 1px solid rgba(229,0,125,0.25);
  color: var(--pink); font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--pink);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}

.hero__photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,0,18,0.65) 0%, rgba(10,0,6,0.82) 100%);
}

.hero__text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white); margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero__text h1 span { color: var(--pink); }

.hero__text p {
  color: var(--muted); font-size: 1rem; line-height: 1.65;
  max-width: 420px; margin-bottom: 32px;
}

.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__tags {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.hero__tags span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted); font-weight: 500;
}
.hero__tags i { color: var(--pink); font-size: 1rem; }

.hero__visual { flex: 1.1; display: flex; justify-content: center; align-items: center; position: relative; }

/* float wrap — animated container */
.hero__float-wrap {
  position: relative;
  width: 100%; max-width: 600px;
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__banner {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 90px rgba(229,0,125,0.4), 0 24px 64px rgba(0,0,0,0.6);
  border: 1px solid rgba(229,0,125,0.35);
  display: block;
}

/* floating stat cards */
.hero__stat {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(18,0,10,0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(229,0,125,0.25);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 20px rgba(229,0,125,0.12);
  white-space: nowrap;
  z-index: 3;
}
.hstat__icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--pink-dim); display: flex; align-items: center;
  justify-content: center; color: var(--pink); font-size: 1rem; flex-shrink: 0;
}
.hero__stat > div:last-child { display: flex; flex-direction: column; }
.hero__stat strong { font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.hero__stat span   { font-size: 0.72rem; color: var(--muted); }

.hero__stat--traf  { top: 8%;   right: -20px; animation: statFloat 3.2s ease-in-out infinite; }
.hero__stat--leads { bottom: 12%; left: -20px; animation: statFloat 3.8s ease-in-out infinite 0.6s; }
.hero__stat--conv  { top: 50%;  right: -20px; animation: statFloat 4.2s ease-in-out infinite 1.2s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes statFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { padding: 100px 0; background: var(--bg2); }

.section-top {
  display: flex; gap: 48px; align-items: flex-start;
  justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap;
}
.section-top h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800; color: var(--white); line-height: 1.2;
}
.section-top h2 span { color: var(--pink); }
.section-top__right {
  max-width: 320px; display: flex; flex-direction: column;
  gap: 12px; justify-content: flex-end;
}
.section-top__right p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

.portfolio__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ---- portfolio cards ---- */
.portfolio__card { border-radius: var(--radius); overflow: hidden; }

.pcard__thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  transition: transform .3s;
  background: var(--bg3);
}
.pcard__thumb:hover { transform: scale(1.02); }
.pcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pcard--green  { background: linear-gradient(135deg, #0a1a0f 0%, #0d2b16 100%); }
.pcard--purple { background: linear-gradient(135deg, #120b1f 0%, #1e0f3a 100%); }
.pcard--blue   { background: linear-gradient(135deg, #0a0f1f 0%, #0d1a3a 100%); }

.pcard__inner { padding: 12px; height: 100%; display: flex; flex-direction: column; gap: 8px; }

.pcard__topbar {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border-radius: 6px; padding: 5px 8px;
}
.tb-dots { display: flex; gap: 3px; }
.tb-dots span { width: 6px; height: 6px; border-radius: 50%; background: #333; }
.tb-url { flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 3px; }
.tb-btn { width: 40px; height: 12px; border-radius: 4px; }
.green-btn  { background: var(--green); }
.purple-btn { background: var(--purple); }
.blue-btn   { background: var(--blue); }

.pcard__body { flex: 1; display: flex; flex-direction: column; gap: 6px; padding: 4px; }
.pcard__body.center { align-items: center; justify-content: center; text-align: center; }

.pb-tag { height: 14px; width: 60px; border-radius: 10px; }
.pb-tag.green  { background: rgba(0,200,83,.3); }

.pb-title { height: 10px; background: rgba(255,255,255,.2); border-radius: 4px; }
.pb-title.short { width: 65%; }
.pb-title.large { height: 14px; background: rgba(255,255,255,.25); border-radius: 4px; }
.pb-title.large.short { width: 70%; }

.pb-sub { height: 7px; background: rgba(255,255,255,.08); border-radius: 3px; }
.pb-sub.short { width: 50%; }

.pb-price { height: 18px; width: 80px; background: rgba(255,255,255,.15); border-radius: 4px; margin-top: 4px; }

.pb-cta { height: 18px; width: 80px; border-radius: 5px; }
.green-fill  { background: var(--green); }
.purple-fill { background: var(--purple); }
.ghost-fill  { background: transparent; border: 1px solid rgba(255,255,255,.2); }

.pcard__person {
  position: absolute; bottom: 0; right: 12px;
  width: 60px; height: 90px;
  background: linear-gradient(to top, rgba(0,200,83,.15), transparent);
  border-radius: 8px 8px 0 0;
}

/* system card */
.pcard__body.pcard__body--sys { flex-direction: row; gap: 6px; }
.pcard__sidebar { width: 28%; display: flex; flex-direction: column; gap: 4px; }
.ps-item { height: 16px; background: rgba(255,255,255,.06); border-radius: 4px; }
.ps-item.active { background: rgba(59,130,246,.3); }
.pcard__main { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.pm-row { display: flex; gap: 4px; }
.pm-cell { flex: 1; height: 10px; background: rgba(255,255,255,.06); border-radius: 3px; }
.pm-cell.wide { flex: 2; }
.pm-cell.blue { background: rgba(59,130,246,.35); }
.pm-cell.blue.short { flex: .7; }
.pm-row.header-row .pm-cell { height: 14px; background: rgba(255,255,255,.12); }

.pcard__info {
  display: flex; align-items: center; justify-content: space-between;
}
.pcard__info h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.pcard__info p  { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

.icon-link {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem;
  transition: border-color .2s, color .2s;
}
.icon-link:hover { border-color: var(--pink); color: var(--pink); }

/* portfolio card hover glow */
.portfolio__card:hover .pcard__thumb {
  box-shadow: 0 0 32px rgba(229,0,125,0.3);
  border: 1px solid rgba(229,0,125,0.4);
}

/* portfolio overlay on hover */
.pcard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,0,6,0.96) 0%, rgba(10,0,6,0.55) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 16px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  border-radius: var(--radius);
}
.pcard__thumb:hover .pcard__overlay { opacity: 1; transform: translateY(0); }

.pcard__otag {
  display: inline-block;
  background: var(--pink-dim); color: var(--pink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 6px; width: fit-content;
}
.pcard__overlay h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.pcard__otechs { display: flex; gap: 6px; flex-wrap: wrap; }
.pcard__otechs span {
  background: rgba(255,255,255,0.07); color: var(--muted);
  font-size: 0.7rem; font-weight: 600; padding: 2px 8px;
  border-radius: 4px; border: 1px solid var(--border);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 1;
}
.stat-item strong {
  font-size: 2.4rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, rgba(229,0,125,0.9) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 100px 0; background: var(--bg); }

.services h2 {
  font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 48px;
}
.services h2 span { color: var(--pink); }

.services__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.scard {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  transition: border-color .25s, transform .25s;
}
.scard:hover { border-color: rgba(229,0,125,.4); transform: translateY(-4px); }

.scard__icon {
  font-size: 1.8rem; color: var(--pink); margin-bottom: 16px;
  width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; background: var(--pink-dim); border-radius: 10px;
}
.scard h3 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.scard p  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   WHY
   ============================================================ */
.why { padding: 100px 0; background: var(--bg2); }

.why h2 {
  font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 48px;
}
.why h2 span { color: var(--pink); }

.why__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.why__card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  transition: border-color .25s, transform .25s;
}
.why__card:hover { border-color: rgba(229,0,125,.4); transform: translateY(-4px); }

.why__card i {
  font-size: 2rem; color: var(--pink); margin-bottom: 14px; display: block;
}
.why__card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why__card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how__photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.how__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.how__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,0,6,0.82) 0%, rgba(10,0,6,0.90) 100%);
  pointer-events: none;
}

.how__inner {
  position: relative; z-index: 1; padding: 100px 24px;
}

.how h2 {
  font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 48px;
}
.how h2 span { color: var(--pink); }

.how__steps { display: flex; align-items: flex-start; gap: 12px; }

.how__step {
  flex: 1; text-align: center;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 20px 24px;
  position: relative;
}

.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink); color: var(--white);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 20px;
}

.how__step i { font-size: 2rem; color: var(--pink); margin: 4px 0 12px; display: block; }
.how__step h4 { font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.how__step p  { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.how__connector {
  color: var(--pink); font-size: 1.4rem;
  margin-top: 48px; flex-shrink: 0; opacity: .5;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #140009 0%, #1f0012 50%, #140009 100%);
  border-top: 1px solid rgba(229,0,125,.2);
  border-bottom: 1px solid rgba(229,0,125,.2);
  padding: 80px 0;
}

.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.cta-banner h2 span { color: var(--pink); }
.cta-banner p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 380px; }

/* ============================================================
   PRICING / VALORES
   ============================================================ */
.pricing { padding: 100px 0; background: var(--bg2); position: relative; overflow: hidden; }

.pricing__photo {
  position: absolute; inset: 0;
  z-index: 0;
}
.pricing__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pricing__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,0,18,0.62) 0%, rgba(80,0,40,0.55) 100%);
}

.pricing .container { position: relative; z-index: 1; }

.pricing h2 {
  font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 12px;
}
.pricing h2 span { color: var(--pink); }

.pricing__sub {
  color: var(--muted); font-size: 0.95rem; margin-bottom: 32px;
}

.pricing__note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(229,0,125,0.08); border: 1px solid rgba(229,0,125,0.2);
  border-radius: 10px; padding: 14px 20px;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 48px;
}
.pricing__note i { color: var(--pink); font-size: 1.1rem; flex-shrink: 0; }
.pricing__note strong { color: var(--white); }

.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}

/* card base */
.pric-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.pric-card:hover {
  border-color: var(--pink);
  background: linear-gradient(160deg, #1a0010 0%, #120008 100%);
  box-shadow: 0 0 40px rgba(229,0,125,0.18);
  transform: translateY(-4px);
}

.pric-card__icon {
  font-size: 1.6rem; color: var(--pink);
  width: 48px; height: 48px; display: flex; align-items: center;
  justify-content: center; background: var(--pink-dim); border-radius: 12px;
}

.pric-card h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
}

.pric-card__desc {
  font-size: 0.85rem; color: var(--muted); line-height: 1.55;
  margin-top: -8px;
}

.pric-card__price {
  display: flex; flex-direction: column; gap: 2px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pric-from   { font-size: 0.75rem; color: var(--muted); }
.pric-value  { font-size: 2rem; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.pric-period { font-size: 0.75rem; color: var(--muted); }

.pric-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.pric-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; color: var(--muted);
}
.pric-features li i { color: var(--pink); font-size: 1rem; flex-shrink: 0; }

.pric-card .btn { width: 100%; justify-content: center; }

.pricing__disclaimer {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: 32px; font-size: 0.82rem; color: var(--muted);
  opacity: .7;
}
.pricing__disclaimer i { color: var(--pink); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #080808; padding: 64px 0 0; border-top: 1px solid var(--border); }

.footer__inner { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr 1fr; gap: 48px; padding-bottom: 48px; }

.footer__brand .logo { margin-bottom: 12px; display: inline-flex; }
.footer__brand .logo .logo__icon { font-size: 1.1rem; padding: 8px 13px; border-radius: 10px; }
.footer__brand .logo .logo__name { font-size: 1.45rem; }
.footer__brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.footer__nav h5, .footer__contact h5, .footer__social h5 {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}

.footer__cols { display: flex; gap: 32px; }
.footer__cols a, .footer__nav a {
  display: block; font-size: 0.88rem; color: var(--muted);
  margin-bottom: 10px; transition: color .2s;
}
.footer__cols a:hover, .footer__nav a:hover { color: var(--pink); }

.footer__contact p {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--muted); margin-bottom: 10px;
}
.footer__contact i { color: var(--pink); }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem;
  transition: border-color .2s, color .2s, background .2s;
}
.social-icons a:hover { border-color: var(--pink); color: var(--pink); }

.footer__bottom {
  border-top: 1px solid var(--border); text-align: center; padding: 18px 0;
}
.footer__bottom p { font-size: 0.8rem; color: var(--muted); opacity: .5; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer__inner  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .services__grid { grid-template-columns: repeat(2,1fr); }
  .why__grid      { grid-template-columns: repeat(2,1fr); }
  .pricing__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
  .how__steps      { flex-wrap: wrap; }
  .how__connector  { display: none; }
}

@media (max-width: 768px) {
  .hero            { padding: 80px 0 56px; }
  .hero__inner     { flex-direction: column; gap: 0; padding-bottom: 32px; }
  .hero__text p    { max-width: 100%; }
  .hero__visual    { width: 100%; }
  .hero__float-wrap { max-width: 100%; }
  .hero__stat      { display: none; }
  .nav             { display: none; }
  .hamburger       { display: block; }
  .header__inner   { gap: 16px; }
  .header__inner .btn { display: none; }
  .services, .pricing, .why, .how { padding: 60px 0; }
  .how__inner  { grid-template-columns: 1fr; gap: 36px; }
  .cta-banner      { padding: 56px 0; }
  .cta-banner__inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .section-top     { flex-direction: column; gap: 16px; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .how__steps      { display: grid; grid-template-columns: 1fr 1fr; }
  .footer__inner   { grid-template-columns: 1fr; gap: 32px; }
  .stats-bar__inner { justify-content: center; }
  .stat-divider    { display: none; }
}

@media (max-width: 480px) {
  .hero            { padding: 64px 0 40px; }
  .hero__text h1   { font-size: 2.4rem; letter-spacing: -0.5px; }
  .hero__btns      { flex-direction: column; }
  .hero__btns .btn { width: 100%; justify-content: center; }
  .services__grid  { grid-template-columns: 1fr; }
  .why__grid       { grid-template-columns: 1fr 1fr; }
  .pricing__grid   { grid-template-columns: 1fr; }
  .how__steps      { grid-template-columns: 1fr; }
  .footer__inner   { grid-template-columns: 1fr; gap: 28px; }
  .stat-item strong { font-size: 1.8rem; }
  .stats-bar__inner { gap: 16px; }
}

/* NAV MOBILE ABERTA */
@media (max-width: 768px) {
  .nav--open {
    display: flex !important; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,.97); backdrop-filter: blur(16px);
    padding: 20px 24px; border-bottom: 1px solid var(--border);
    gap: 4px; z-index: 99;
  }
  .nav--open .nav__link { padding: 12px 0; font-size: 1rem; }
}
