/* ===========================
   SOFTPIRE — style.css (v2)
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --sp-bg:        #050508;
  --sp-bg-2:      #0d0d14;
  --sp-bg-card:   #11111a;
  --sp-border:    rgba(255,255,255,0.07);
  --sp-border-hi: rgba(255,255,255,0.14);

  --sp-green:     #00d68f;
  --sp-blue:      #4488ff;
  --sp-purple:    #8b5cf6;
  --sp-cyan:      #22d3ee;

  --sp-text:      #f0f0f6;
  --sp-text-muted:#8888aa;
  --sp-text-dim:  #44445a;

  --sp-whatsapp:      #25D366;
  --sp-whatsapp-dark: #1ebe5c;

  --radius-md: 8px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--sp-text);
  background: var(--sp-bg);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

/* ── BACKGROUND GLOBAL (hex canvas) ── */
#bg-global {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%,   rgba(120,40,220,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(0,200,220,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 5% 95%,   rgba(0,180,210,0.20) 0%, transparent 60%),
    linear-gradient(160deg, #06030f 0%, #08091a 40%, #060b18 100%);
}
#hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── 3D BACKGROUND SCENE ── */
.bg-3d-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-ring {
  position: absolute;
  border-radius: 50%;
}

.bg-ring.r1 {
  width: 500px; height: 500px;
  top: 4%; left: -90px;
  border: 1px solid rgba(139,92,246,0.13);
  filter: blur(0.6px);
  animation: ring3d1 26s linear infinite;
}

.bg-ring.r2 {
  width: 720px; height: 720px;
  bottom: -160px; right: -160px;
  border: 1px solid rgba(0,214,143,0.09);
  filter: blur(0.6px);
  animation: ring3d2 40s linear infinite;
}

.bg-ring.r3 {
  width: 340px; height: 340px;
  top: 35%; right: 6%;
  border: 1px solid rgba(68,136,255,0.11);
  filter: blur(1px);
  animation: ring3d3 32s ease-in-out infinite;
}

@keyframes ring3d1 {
  0%   { transform: perspective(900px) rotateX(70deg) rotateY(8deg) rotateZ(0deg); }
  100% { transform: perspective(900px) rotateX(70deg) rotateY(8deg) rotateZ(360deg); }
}
@keyframes ring3d2 {
  0%   { transform: perspective(900px) rotateX(-55deg) rotateY(-14deg) rotateZ(0deg); }
  100% { transform: perspective(900px) rotateX(-55deg) rotateY(-14deg) rotateZ(-360deg); }
}
@keyframes ring3d3 {
  0%   { transform: perspective(600px) rotateX(52deg) rotateY(28deg) rotateZ(0deg); opacity: 0.5; }
  35%  { transform: perspective(600px) rotateX(82deg) rotateY(-18deg) rotateZ(126deg); opacity: 1; }
  65%  { transform: perspective(600px) rotateX(38deg) rotateY(58deg) rotateZ(234deg); opacity: 0.35; }
  100% { transform: perspective(600px) rotateX(52deg) rotateY(28deg) rotateZ(360deg); opacity: 0.5; }
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
}

.bg-orb.o1 {
  width: 520px; height: 520px;
  top: 12%; left: -12%;
  background: radial-gradient(circle at 40% 40%, rgba(139,92,246,0.08) 0%, transparent 65%);
  filter: blur(55px);
  animation: orbDrift1 55s ease-in-out infinite;
}

.bg-orb.o2 {
  width: 400px; height: 400px;
  bottom: 5%; right: -8%;
  background: radial-gradient(circle at 60% 60%, rgba(0,214,143,0.055) 0%, transparent 65%);
  filter: blur(45px);
  animation: orbDrift2 70s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%, 100% { transform: translate(0,     0)    scale(1); }
  25%       { transform: translate(90px,  -70px) scale(1.18); }
  50%       { transform: translate(150px,  50px) scale(0.88); }
  75%       { transform: translate(-35px,  100px) scale(1.1); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0,    0)     scale(1); }
  33%       { transform: translate(-80px,-90px) scale(1.22); }
  66%       { transform: translate(60px, -50px) scale(0.82); }
}

/* ── COLOR STRIP ── */
.color-strip {
  height: 3px;
  background: linear-gradient(90deg, var(--sp-green) 0%, var(--sp-blue) 50%, var(--sp-purple) 100%);
  position: relative;
  z-index: 200;
}

/* ── NAVBAR ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
  height: 64px;
  background: rgba(5,5,8,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 130px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: brightness(1.1);
  margin: -38px -20px;
  display: block;
}

.nav .logo-img { height: 130px; margin: -38px -20px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--sp-green);
  border-radius: 2px;
}

/* ── WHATSAPP BUTTONS ── */
.btn-whatsapp-nav {
  background: var(--sp-whatsapp);
  color: #fff !important;
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp-nav:hover { background: var(--sp-whatsapp-dark); transform: translateY(-1px); }
.btn-whatsapp-nav svg { flex-shrink: 0; }

.btn-whatsapp-hero {
  background: var(--sp-whatsapp);
  color: #fff !important;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp-hero:hover { background: var(--sp-whatsapp-dark); transform: translateY(-1px); }
.btn-whatsapp-hero svg { flex-shrink: 0; }

.btn-whatsapp-cta {
  background: var(--sp-whatsapp);
  color: #fff !important;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  line-height: 1;
  min-height: 50px;
  transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp-cta:hover { background: var(--sp-whatsapp-dark); transform: translateY(-1px); }
.btn-whatsapp-cta svg { flex-shrink: 0; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--sp-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
  animation: none;
}
.whatsapp-float svg { flex-shrink: 0; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* Standard buttons */
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--sp-green);
  color: var(--sp-green);
  background: rgba(0,214,143,0.06);
}

.btn-cta {
  background: var(--sp-green);
  color: #000 !important;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  min-height: 50px;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: #00f0a0; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,214,143,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(68,136,255,0.07) 0%, transparent 60%);
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 80px;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 60px;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,214,143,0.1);
  border: 1px solid rgba(0,214,143,0.25);
  color: var(--sp-green);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sp-green);
  box-shadow: 0 0 6px var(--sp-green);
  animation: blink-dot 2s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--sp-text);
}
.hero h1 span.g { color: var(--sp-green); }
.hero h1 span.p { color: var(--sp-purple); }

.hero p {
  font-size: 17px;
  color: var(--sp-text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }

.stats-row {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--sp-border);
}
.stat-num {
  font-size: 22px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, var(--sp-green), var(--sp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--sp-text-muted); margin-top: 2px; }

/* Hero Code Card */
.hero-code-card {
  background: rgba(13,13,20,0.9);
  border: 1px solid rgba(0,214,143,0.25);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 60px rgba(0,214,143,0.08),
    0 20px 80px rgba(0,0,0,0.5);
  transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s;
}
.hero-code-card:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 0 80px rgba(0,214,143,0.15),
    0 30px 100px rgba(0,0,0,0.6);
}

.code-card-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.code-card-dots { display: flex; gap: 5px; }
.code-card-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.code-card-dots span:nth-child(1) { background: #ff5f57; }
.code-card-dots span:nth-child(2) { background: #febc2e; }
.code-card-dots span:nth-child(3) { background: #28c840; }
.code-card-title {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', monospace;
  margin-left: 4px;
}
.code-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sp-green);
  box-shadow: 0 0 6px var(--sp-green);
  margin-left: auto;
  animation: blink-dot 1.5s ease-in-out infinite;
}

.code-card-body {
  padding: 20px 20px 24px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 12.5px;
  line-height: 1.8;
}
.code-line { display: block; white-space: pre; }
.c-dim    { color: rgba(255,255,255,0.2); }
.c-kw     { color: #c792ea; }
.c-fn     { color: #82aaff; }
.c-str    { color: #c3e88d; }
.c-key    { color: #f78c6c; }
.c-green  { color: var(--sp-green); }
.c-punc   { color: rgba(255,255,255,0.5); }
.c-blank  { display: block; height: 10px; }

.code-card-footer {
  padding: 12px 20px;
  background: rgba(0,214,143,0.07);
  border-top: 1px solid rgba(0,214,143,0.15);
  font-size: 12px;
  color: var(--sp-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: rgba(10,8,25,0.7);
  border-top: 1px solid rgba(120,40,220,0.15);
  border-bottom: 1px solid rgba(120,40,220,0.15);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 48px;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 6px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  font-weight: 500;
}
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--sp-green); flex-shrink: 0; }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); margin: 0 48px; }

/* ── SECTIONS ── */
.section { padding: 80px 48px; background: rgba(6,4,18,0.65); }

.section-label {
  font-size: 11px;
  color: var(--sp-purple);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}
.section h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: var(--sp-text);
}
.section .sub {
  font-size: 16px;
  color: var(--sp-text-muted);
  line-height: 1.65;
  max-width: 560px;
}

.section-action { text-align: center; margin-top: 54px; }

/* ── PAIN SECTION ── */
.pain-section { background: rgba(6,4,18,0.65); }

.pain-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}

.pain-left .section-label { margin-bottom: 12px; }
.pain-left h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.pain-left .sub { font-size: 15px; color: var(--sp-text-muted); line-height: 1.65; }

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(12,10,28,0.85);
  backdrop-filter: blur(8px);
}

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-bottom: 1px solid var(--sp-border);
  transition: background 0.15s;
}
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { background: rgba(255,255,255,0.03); }

.pain-x-icon { flex-shrink: 0; padding-top: 1px; }

.pain-item strong {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  color: var(--sp-text);
}
.pain-item p { font-size: 13px; color: var(--sp-text-muted); line-height: 1.5; }

.pain-solution {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(0,214,143,0.08);
  border: 1px solid rgba(0,214,143,0.25);
  border-radius: 10px;
  border-left: 3px solid var(--sp-green);
  color: var(--sp-green);
  font-weight: 500;
  font-size: 14px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  background: rgba(12,10,28,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sp-green), var(--sp-blue));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--sp-border-hi);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,214,143,0.05);
}
.service-card:hover::before { opacity: 1; }

.card-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(0,214,143,0.1);
  border: 1px solid rgba(0,214,143,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sp-green);
}
.card-icon-wrap.icon-purple {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.2);
  color: var(--sp-purple);
}
.card-icon-wrap.icon-blue {
  background: rgba(68,136,255,0.1);
  border-color: rgba(68,136,255,0.2);
  color: var(--sp-blue);
}

.service-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--sp-text); }
.service-card p  { font-size: 13px; color: var(--sp-text-muted); line-height: 1.65; }

/* ── STEPS ── */
.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.step-card {
  flex: 1 1 0;
  min-width: 0;
  background: rgba(12,10,28,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--sp-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.step-card::after {
  content: attr(data-step);
  position: absolute;
  top: 50%; right: 8px;
  transform: translateY(-50%);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  font-family: 'Space Grotesk', sans-serif;
  pointer-events: none;
  line-height: 1;
}

.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--sp-green), var(--sp-blue));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.step-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--sp-text); }
.step-card p  { font-size: 13px; color: var(--sp-text-muted); line-height: 1.6; }

.step-arrow {
  font-size: 20px;
  color: var(--sp-text-dim);
  padding-top: 38px;
  flex-shrink: 0;
}

/* ── AUTHORITY / SOBRE ── */
.authority-section { background: rgba(6,4,18,0.65); }

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.authority-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.authority-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.auth-check {
  font-size: 15px;
  color: var(--sp-green);
  min-width: 22px;
  padding-top: 1px;
}

.authority-item strong {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
  color: var(--sp-text);
}
.authority-item p { font-size: 13px; color: var(--sp-text-muted); line-height: 1.6; }

.authority-cards { display: flex; flex-direction: column; gap: 16px; }

.auth-card {
  background: rgba(12,10,28,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--sp-border);
}
.auth-card-green {
  background: rgba(0,214,143,0.06);
  border-color: rgba(0,214,143,0.2);
}

.auth-card-icon { font-size: 24px; margin-bottom: 10px; }
.auth-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--sp-text); }
.auth-card p  { font-size: 13px; color: var(--sp-text-muted); line-height: 1.6; }
.auth-card-green p { color: rgba(0,214,143,0.85); }

.authority-num {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, var(--sp-green), var(--sp-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TESTIMONIALS ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.testimonial {
  background: rgba(12,10,28,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 80px;
  font-family: 'Space Grotesk', serif;
  color: rgba(0,214,143,0.15);
  line-height: 1;
  pointer-events: none;
}
.testimonial p {
  font-size: 14px;
  color: var(--sp-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.avatar-g { background: rgba(0,214,143,0.2); color: var(--sp-green); border: 1px solid rgba(0,214,143,0.3); }
.avatar-p { background: rgba(139,92,246,0.2); color: var(--sp-purple); border: 1px solid rgba(139,92,246,0.3); }
.avatar-b { background: rgba(68,136,255,0.2); color: var(--sp-blue); border: 1px solid rgba(68,136,255,0.3); }
.author-name { font-size: 13px; font-weight: 600; color: var(--sp-text); }
.author-role { font-size: 12px; color: var(--sp-text-muted); }

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  padding: 72px 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,214,143,0.08), rgba(68,136,255,0.08));
  border: 1px solid transparent;
  border-radius: 20px;
  margin: 0 48px;
  overflow: hidden;
  color: #fff;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, var(--sp-green), var(--sp-blue), var(--sp-purple), var(--sp-green));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderGlow 4s linear infinite;
  pointer-events: none;
}
@keyframes borderGlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 300% 300%; }
}
.cta-section h2 { font-size: 32px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; color: #fff; }
.cta-section p  { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; align-items: center; }
.contact-row { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.contact-item { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ── CONTACT SECTION ── */
.contact-section {
  background: rgba(8,6,22,0.88);
  padding: 80px 48px;
  color: #fff;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.contact-s-logo {
  width: 220px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 0 30px rgba(0,214,143,0.5)) drop-shadow(0 0 80px rgba(68,136,255,0.3));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1.5deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}

.contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-left h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.2;
}

.contact-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.contact-info-item svg { flex-shrink: 0; opacity: 0.75; }
.contact-info-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-info-item a:hover { opacity: 0.75; text-decoration: underline; }

.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(12px);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0,214,143,0.5);
  background: rgba(255,255,255,0.1);
}

.btn-contact-submit {
  background: var(--sp-green);
  color: #000;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
  width: 100%;
}
.btn-contact-submit:hover { background: #00f0a0; transform: translateY(-1px); }

/* ── FOOTER ── */
.footer {
  background: rgba(4,3,12,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.footer-logo-img {
  height: 150px;
  width: auto;
  mix-blend-mode: normal;
  filter: brightness(1.1);
  margin: -28px -16px;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col p { font-size: 13px; color: rgba(255,255,255,0.45); display: block; margin-bottom: 6px; }
.footer-col h4 { font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 12px; font-family: 'Space Grotesk', sans-serif; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; display: block; margin-bottom: 6px; transition: color 0.2s; }
.footer-col p > a { display: inline; margin-bottom: 0; }
.footer-col a:hover { color: var(--sp-green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ── MOCKUP CAROUSEL ── */
.mockup-carousel-section {
  padding: 60px 0 70px;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: rgba(6,4,18,0.5);
}

.mockup-carousel-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sp-text-muted);
  margin-bottom: 40px;
  font-weight: 500;
}

.mockup-carousel-track-wrap {
  perspective: 1200px;
  overflow: visible;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 520px;
}

.mockup-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  padding: 40px 20px;
}

.mockup-card {
  flex: 0 0 260px;
  width: 260px;
  height: 420px;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.6s ease, filter 0.6s ease;
  transform-origin: center center;
  user-select: none;
}

.mockup-card.side-left {
  transform: perspective(1200px) rotateY(28deg) scale(0.78) translateZ(-60px);
  opacity: 0.5;
  filter: brightness(0.55) blur(0.5px);
}
.mockup-card.side-right {
  transform: perspective(1200px) rotateY(-28deg) scale(0.78) translateZ(-60px);
  opacity: 0.5;
  filter: brightness(0.55) blur(0.5px);
}
.mockup-card.far-left {
  transform: perspective(1200px) rotateY(45deg) scale(0.6) translateZ(-120px);
  opacity: 0.25;
  filter: brightness(0.35) blur(1px);
}
.mockup-card.far-right {
  transform: perspective(1200px) rotateY(-45deg) scale(0.6) translateZ(-120px);
  opacity: 0.25;
  filter: brightness(0.35) blur(1px);
}
.mockup-card.center {
  transform: perspective(1200px) rotateY(0deg) scale(1) translateZ(0px);
  opacity: 1;
  filter: brightness(1);
  z-index: 10;
}

.mockup-screen {
  background: #10101e;
  border: 1px solid rgba(130,60,255,0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(130,60,255,0.15), 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(100,50,220,0.1);
  transition: box-shadow 0.6s ease, border-color 0.6s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mockup-card.center .mockup-screen {
  border-color: rgba(130,60,255,0.7);
  box-shadow: 0 0 0 1px rgba(130,60,255,0.4), 0 30px 80px rgba(0,0,0,0.8), 0 0 60px rgba(100,50,220,0.25), 0 0 120px rgba(0,180,220,0.1);
}

.mockup-screen-light {
  background: #f8f8fc;
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-topbar.dark {
  background: rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-logo-bar {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.mockup-logo-bar.dark { color: #333; }
.mock-s { width: 16px; height: 16px; object-fit: contain; }

.mockup-body { padding: 16px; text-align: left; flex: 1; overflow: hidden; }
.mockup-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 8px;
}
.mockup-body p { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin-bottom: 12px; }
.mockup-tag {
  display: inline-block; font-size: 10px; padding: 3px 10px;
  border-radius: 20px; border: 1px solid rgba(140,60,255,0.5);
  color: rgba(180,130,255,0.9); margin-bottom: 10px; letter-spacing: 0.5px;
}

.mock-btn-primary {
  background: linear-gradient(135deg, #8b3cf7, #4488ff);
  color: #fff; padding: 8px 14px; border-radius: 8px;
  font-size: 11px; font-weight: 600; display: inline-block; margin-right: 6px; margin-bottom: 6px;
}
.mock-btn-outline {
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8);
  padding: 7px 12px; border-radius: 8px; font-size: 11px; display: inline-block; margin-bottom: 6px;
}
.mock-btn-dark { background: #1a3a8c; color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 11px; font-weight: 600; display: inline-block; }
.mock-btn-brown { background: #7c5c3e; color: #fff; padding: 8px 14px; border-radius: 8px; font-size: 11px; font-weight: 600; display: inline-block; }
.mock-purple { color: #b97aff; }
.mock-blue   { color: #4ab4ff; }
.mock-green  { color: #00d68f; }

.mockup-stats-mini { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.mock-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 8px 10px; font-size: 10px;
  color: rgba(255,255,255,0.6); flex: 1; min-width: 60px;
}
.mock-stat strong { display: block; font-size: 1.1rem; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.mock-chart { color: #00d68f; font-size: 11px; font-weight: 600; }

.mockup-services-bar {
  display: flex; justify-content: space-around;
  padding: 12px 10px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap; gap: 6px;
}
.mock-svc { font-size: 9.5px; color: rgba(255,255,255,0.6); display: flex; flex-direction: column; align-items: center; gap: 3px; min-width: 50px; }
.mock-svc span { font-size: 16px; }

.mock-resources { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mock-resource {
  display: flex; align-items: center; gap: 8px; font-size: 11px;
  color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.04);
  border-radius: 8px; padding: 7px 10px; border: 1px solid rgba(255,255,255,0.07);
}
.mock-resource.dark-txt { color: #444; background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }

.mockup-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 36px;
}
.mockup-prev, .mockup-next {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mockup-prev:hover, .mockup-next:hover {
  background: rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.5); color: #fff;
}
.mockup-dots-nav { display: flex; gap: 8px; align-items: center; }
.mockup-dots-nav span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s; cursor: pointer;
}
.mockup-dots-nav span.active { background: var(--sp-purple); transform: scale(1.4); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .btn-whatsapp-nav span { display: none; }
  .btn-whatsapp-nav { padding: 9px 12px; }

  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 48px; gap: 40px; }
  .hero-left { align-items: center; text-align: center; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 14px; }
  .stats-row { gap: 20px; }
  .hero-code-card { transform: none; display: none; }

  .section { padding: 48px 24px; }
  .divider { margin: 0 24px; }
  .cta-section { padding: 48px 24px; margin: 0 16px; border-radius: 12px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 14px; }
  .footer { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-bar { padding: 10px 20px; }
  .trust-item { border-right: none; padding: 4px 0; }
  .pain-content { grid-template-columns: 1fr; gap: 32px; }
  .authority-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { width: 100%; flex: none; }
  .step-arrow { display: none; }
  .btn-whatsapp-hero { font-size: 14px; padding: 13px 20px; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 54px; height: 54px; }

  .contact-section { padding: 48px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-logo-col { display: none; }
  .contact-left h2 { font-size: 26px; }
  .contact-form-card { padding: 24px; }

  .mockup-card { flex: 0 0 220px; width: 220px; height: 360px; }
  .mockup-carousel-track-wrap { height: 460px; }
  .mockup-carousel-track { padding: 40px 0; }
}
