/* ============== Theme & Variables ============== */
:root {
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --bg: #0a0a0b;
  --elev: #111113;
  --card: #161618;
  --muted: #9ca3af;
  --text: #f9fafb;
  --border: #27272a;
  --white: #ffffff;
  --black: #000000;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.6);
  --gradient-primary: linear-gradient(135deg, var(--red-700), var(--red-500));
  --gradient-text: linear-gradient(135deg, #ffffff, #e5e7eb);
}

/* ============== Reset & Base ============== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #0a0a0b 0%, #111113 40%, #0a0a0b 100%);
  line-height: 1.6;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--text);
  text-decoration: none;
  transition: all .2s ease;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 100px 0;
}
.section-alt {
  background: linear-gradient(180deg, rgba(185, 28, 28, 0.06), transparent);
}
h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
}
h3 {
  font-size: clamp(20px, 3vw, 24px);
}
p {
  margin: 0 0 16px;
  line-height: 1.7;
}
.lead {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #e5e7eb;
  font-weight: 400;
}
.muted {
  color: var(--muted);
}
.text-center {
  text-align: center;
}
.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============== Header & Progress ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.scroll-progress {
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
  transition: width .1s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
  z-index: 1;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 20px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
}

.site-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  opacity: 0.85;
  font-weight: 500;
  transition: all .2s ease;
}
.site-nav a:hover {
  opacity: 1;
  color: var(--white);
  transform: translateY(-1px);
}
.site-nav .btn-sm {
  padding: 12px 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
  cursor: pointer;
  transition: all .2s ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}
.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #e5e7eb;
  margin: 6px auto;
  transition: .3s;
  border-radius: 2px;
}

/* ============== Buttons & Effects ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
  font-size: 16px;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--red-700);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(185, 28, 28, 0.15);
  border-color: var(--red-500);
}
.btn-sm {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: auto -50% 0 auto;
  top: 0;
  width: 40%;
  height: 200%;
  transform: skewX(-20deg) translateX(-250%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.0));
  animation: btnShine 3s infinite;
}
@keyframes btnShine {
  0% {
    transform: skewX(-20deg) translateX(-250%);
  }
  60% {
    transform: skewX(-20deg) translateX(350%);
  }
  100% {
    transform: skewX(-20deg) translateX(350%);
  }
}

.btn-glow {
  box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  }
  70% {
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4), 0 0 0 20px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  }
}

/* ============== Hero ============== */
.hero {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-decor {
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 80%;
  filter: blur(80px);
  opacity: 0.3;
  background: radial-gradient(60% 60% at 50% 30%, rgba(185, 28, 28, 0.8), rgba(185, 28, 28, 0));
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content .lead {
  margin-bottom: 32px;
}
.cta-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  color: #d1d5db;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
}
.hero-stats strong {
  color: var(--white);
  font-weight: 700;
}

.mockup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-style: preserve-3d;
}
.mockup-header {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #1a1a1c, #131315);
  border-bottom: 1px solid var(--border);
}
.mockup-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}
.mockup-body {
  padding: 24px;
}
.mockup-graph {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 180px;
}
.mockup-graph .bar {
  width: 14%;
  border-radius: 10px;
  background: var(--gradient-primary);
  animation: barGrow 2.5s ease forwards;
  transform: scaleY(0);
  transform-origin: bottom;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}
@keyframes barGrow {
  to {
    transform: scaleY(1);
  }
}
.h-20 {
  height: 20%;
}
.h-28 {
  height: 28%;
}
.h-36 {
  height: 36%;
}
.h-44 {
  height: 44%;
}
.h-52 {
  height: 52%;
}

/* Analytics Panel - substitui a sparkline antiga */
.analytics-panel {
  margin-top: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.metric-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--red-400);
}

.sparkline-container {
  position: relative;
}

.sparkline-label {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 8px;
}

.sparkline {
  position: relative;
  height: 40px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.sparkline-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.sparkline-svg polyline {
  filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.3));
  animation: sparklineDraw 2s ease-out forwards;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}

@keyframes sparklineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.sparkline-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sparkline-dots .dot {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-500);
  transform: translateY(-50%);
  opacity: 0;
  animation: dotAppear 0.5s ease-out forwards;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.sparkline-dots .dot.active {
  background: #ffffff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.sparkline-dots .dot.pulse {
  animation: dotAppear 0.5s ease-out forwards, dotPulse 2s ease-in-out infinite 0.5s;
}

@keyframes dotAppear {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.3);
    opacity: 0.7;
  }
}

/* Remove os estilos antigos da sparkline */
.sparkline span {
  display: none;
}

/* ============== Trust Bar ============== */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.trust-content {
  text-align: center;
}
.trust-text {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 500;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 500;
}
.badge i {
  color: var(--red-400);
}

/* ============== Tilt Effect ============== */
.tilt {
  transition: transform .3s ease;
}
.tilt:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(-3deg) translateY(-4px);
}

/* ============== Cards / Grids ============== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cards .card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.cards .card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: var(--shadow-lg);
}
.cards .card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(185, 28, 28, 0.0),
    rgba(185, 28, 28, 0.6),
    rgba(185, 28, 28, 0.0) 60%
  );
  filter: blur(15px);
  opacity: 0.4;
  z-index: 0;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cards .card > * {
  position: relative;
  z-index: 1;
}
.card-icon {
  font-size: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(185, 28, 28, 0.15);
  border: 1px solid rgba(185, 28, 28, 0.3);
  color: var(--red-400);
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.2);
}
.card-icon i {
  width: 24px;
  height: 24px;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #d1d5db;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--gradient-primary);
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.3);
}

/* ============== Portfolio ============== */
.portfolio .shot {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all .3s ease;
}
.portfolio .shot:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: var(--shadow-lg);
}
.shot-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.shot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.portfolio .shot:hover .shot-thumb img {
  transform: scale(1.05);
}
.shot figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  color: #e5e7eb;
}
.shot figcaption strong {
  font-weight: 600;
  font-size: 16px;
}
.shot figcaption .muted {
  font-size: 14px;
}
.result {
  color: var(--red-400);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 12px;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(185, 28, 28, 0.2);
}

/* ============== Results Section ============== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.result-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s ease;
}
.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: var(--shadow-lg);
}
.result-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--red-400);
  margin-bottom: 12px;
}
.result-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============== Process (Timeline) ============== */
.process-wrap {
  position: relative;
  margin-top: 60px;
}
.process-connector {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  height: 3px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(185, 28, 28, 0.0) 0%,
    rgba(185, 28, 28, 0.6) 15%,
    rgba(185, 28, 28, 0.9) 50%,
    rgba(185, 28, 28, 0.6) 85%,
    rgba(185, 28, 28, 0.0) 100%
  );
}
.process-connector.moving::after {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 150px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  filter: blur(8px);
  animation: dash 4s linear infinite;
}
@keyframes dash {
  0% {
    transform: translateX(-75px);
  }
  100% {
    transform: translateX(calc(100% + 75px));
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.p-step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 24px 24px;
  box-shadow: var(--shadow);
  transition: all .3s ease;
}
.p-step:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 28, 28, 0.4);
  box-shadow: var(--shadow-lg);
}
.p-icon {
  position: absolute;
  left: 24px;
  top: -16px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.4);
}
.p-icon i {
  width: 24px;
  height: 24px;
}
.p-num {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-primary);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}
.p-num i {
  width: 24px;
  height: 24px;
}
.p-step h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 20px;
}
.p-step p {
  color: #d1d5db;
  margin-bottom: 16px;
  font-size: 15px;
}
.p-step ul {
  margin: 0;
  padding-left: 20px;
  color: #9ca3af;
  font-size: 14px;
}
.p-step ul li {
  margin: 6px 0;
}

/* ============== Testimonials (Carousel) - Professional Format ============== */
.testimonial-carousel {
  position: relative;
  margin-top: 60px;
}

.carousel-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px 8px 32px;
  scrollbar-width: thin;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}
.carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 999px;
}
.carousel-track::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

.t-card {
  flex: 0 0 clamp(380px, 70%, 620px);
  scroll-snap-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.t-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity .3s ease;
}

.t-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: var(--shadow-lg);
}

.t-card:hover::before {
  opacity: 1;
}

.t-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.avatar-photo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all .3s ease;
}

.avatar-photo:hover {
  border-color: rgba(185, 28, 28, 0.4);
  transform: scale(1.05);
}

.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.who strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.who > span {
  color: var(--red-400);
  font-size: 14px;
  font-weight: 600;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.company-info .industry {
  font-weight: 500;
}

.company-info .separator {
  color: rgba(255, 255, 255, 0.3);
}

.company-info .location {
  font-weight: 400;
}

.rating-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

.stars i {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.rating-text {
  font-size: 14px;
  font-weight: 700;
  color: #fbbf24;
}

.t-quote {
  color: #e5e7eb;
  line-height: 1.7;
  font-size: 16px;
  font-style: italic;
  margin: 0 0 24px 0;
  position: relative;
  padding-left: 20px;
}

.t-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: var(--red-400);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.t-quote strong {
  color: var(--red-400);
  font-weight: 700;
}

.t-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.result-highlight {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--red-400);
  line-height: 1;
}

.result-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 8px;
  color: #22c55e;
  font-size: 12px;
  font-weight: 500;
}

.verified-badge i {
  width: 14px;
  height: 14px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(16, 16, 18, 0.9);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(15px);
  transition: all .3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(16, 16, 18, 0.95);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.carousel-btn.prev {
  left: -12px;
}

.carousel-btn.next {
  right: -12px;
}

.carousel-btn i {
  width: 22px;
  height: 22px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #374151;
  border: 0;
  cursor: pointer;
  transition: all .3s ease;
}

.dot:hover {
  background: #4b5563;
  transform: scale(1.1);
}

.dot.active {
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.4);
  transform: scale(1.2);
}

/* Testimonial Stats */
.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--red-400);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
}

.stars-small {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: #fbbf24;
  margin-top: 8px;
}

.stars-small i {
  width: 14px;
  height: 14px;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
  .t-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .avatar-photo {
    align-self: flex-start;
  }

  .rating-section {
    align-items: flex-start;
    flex-direction: row;
    gap: 8px;
  }

  .t-footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .testimonial-stats {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
    padding: 32px 24px;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .t-card {
    padding: 24px;
  }

  .t-quote {
    font-size: 15px;
    padding-left: 16px;
  }

  .t-quote::before {
    font-size: 36px;
    top: -6px;
  }
}

/* ============== Partnerships Section ============== */
.partnerships-content {
  margin-top: 60px;
}

.partnership-status {
  max-width: 900px;
  margin: 0 auto;
}

.status-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.status-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(185, 28, 28, 0.1);
  border: 2px solid rgba(185, 28, 28, 0.2);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--red-400);
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.2);
}

.status-icon i {
  width: 36px;
  height: 36px;
}

.status-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--white);
}

.status-card > p {
  font-size: 18px;
  color: #d1d5db;
  margin-bottom: 40px;
  line-height: 1.6;
}

.partnership-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.partnership-type {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all .3s ease;
}

.partnership-type:hover {
  border-color: rgba(185, 28, 28, 0.3);
  background: rgba(185, 28, 28, 0.05);
  transform: translateY(-2px);
}

.type-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(185, 28, 28, 0.15);
  border: 1px solid rgba(185, 28, 28, 0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red-400);
}

.type-icon i {
  width: 20px;
  height: 20px;
}

.type-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.type-content strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.type-content span {
  font-size: 14px;
  color: var(--muted);
}

.partnership-benefits {
  text-align: left;
  margin-bottom: 40px;
}

.partnership-benefits h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-weight: 500;
}

.benefits-list i {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
}

.partnership-cta {
  text-align: center;
}

.partnership-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.future-partners {
  margin-top: 60px;
}

.future-partners h3 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--white);
}

.partner-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    from 180deg at 50% 50%,
    rgba(185, 28, 28, 0.0),
    rgba(185, 28, 28, 0.4),
    rgba(185, 28, 28, 0.0) 60%
  );
  filter: blur(10px);
  opacity: 0;
  z-index: 0;
  transition: opacity .3s ease;
}

.category-card:hover::before {
  opacity: 0.6;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: var(--shadow-lg);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.category-header i {
  width: 48px;
  height: 48px;
  color: var(--red-400);
  padding: 12px;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(185, 28, 28, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.2);
}

.category-header h4 {
  font-size: 18px;
  margin: 0;
  color: var(--white);
}

.category-card p {
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive for Partnerships */
@media (max-width: 768px) {
  .partnership-types {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .partner-categories {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .status-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .partnership-type {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .type-content {
    align-items: center;
  }
}

/* ============== FAQ Section ============== */
.faq-grid {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item:hover {
  border-color: rgba(185, 28, 28, 0.3);
}
.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: 0;
  color: var(--text);
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s ease;
}
.faq-question:hover {
  color: var(--white);
}
.faq-question i {
  width: 20px;
  height: 20px;
  color: var(--red-400);
  transition: transform .3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 32px 24px;
  max-height: 200px;
}
.faq-answer p {
  color: #d1d5db;
  line-height: 1.7;
  margin: 0;
}

/* ============== About ============== */
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.about-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.about-row:last-child {
  border-bottom: 0;
}
.about-kpi {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============== CTA Final ============== */
.cta-final {
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  background: radial-gradient(60% 60% at 50% 0%, rgba(185, 28, 28, 0.6), rgba(185, 28, 28, 0)),
    linear-gradient(135deg, rgba(185, 28, 28, 0.3), rgba(185, 28, 28, 0.08));
  filter: blur(40px);
}
.cta-final-inner {
  position: relative;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 25px 80px rgba(185, 28, 28, 0.25);
  backdrop-filter: blur(10px);
}
.cta-final h2 {
  margin-bottom: 16px;
}
.cta-final .lead {
  margin-bottom: 32px;
}

/* ============== Footer ============== */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 40px;
  background: rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red-700), var(--red-500), transparent);
  filter: blur(1px);
}
.footer-decor {
  position: absolute;
  inset: auto -30% -40% -30%;
  height: 80%;
  filter: blur(100px);
  opacity: 0.15;
  background: radial-gradient(50% 50% at 70% 30%, rgba(185, 28, 28, 0.8), rgba(185, 28, 28, 0));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 0 0 40px;
  position: relative;
  z-index: 1;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-grid h4 {
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 600;
}
.linklist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.linklist li {
  margin: 12px 0;
}
.linklist a {
  color: var(--muted);
  transition: color .2s ease;
}
.linklist a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.socials {
  display: flex;
  gap: 12px;
}
.social {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #d1d5db;
  transition: all .2s ease;
}
.social:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}
.social i {
  width: 18px;
  height: 18px;
}

/* ============== Mobile CTA Bar ============== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 16px 20px;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
}
.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
}
.mobile-cta-btn i {
  width: 20px;
  height: 20px;
}

/* ============== Back to Top ============== */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(16, 16, 18, 0.8);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .3s;
  backdrop-filter: blur(10px);
  z-index: 80;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(16, 16, 18, 0.9);
  transform: translateY(-2px);
}
.to-top i {
  width: 20px;
  height: 20px;
}

/* ============== Animations ============== */
[data-animate] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate-stagger].in > * {
  opacity: 1;
  transform: translateY(0);
}
[data-animate-stagger] > * {
  transition-delay: var(--d, 0ms);
}

/* ============== Responsive Design ============== */
@media (max-width: 1200px) {
  .process-connector {
    display: none;
  }
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding-top: 80px;
    min-height: auto;
  }
  .hero-stats {
    gap: 24px;
  }
  .trust-badges {
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 80px 0;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badges {
    justify-content: center;
  }
  .badge {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Mobile Navigation */
  .nav-toggle {
    display: grid;
  }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  .site-nav a {
    font-size: 16px;
  }

  /* Mobile Process */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-step {
    padding-left: 80px;
    padding-top: 24px;
  }
  .p-icon {
    left: 20px;
    top: 20px;
  }
  .p-num {
    right: 20px;
    top: 20px;
  }
  .p-step::before {
    content: "";
    position: absolute;
    left: 44px;
    top: 68px;
    bottom: -12px;
    width: 3px;
    background: linear-gradient(180deg, rgba(185, 28, 28, 0.9), rgba(185, 28, 28, 0.2));
    border-radius: 999px;
  }
  .process-steps .p-step:last-child::before {
    display: none;
  }

  /* Mobile CTA Bar */
  .mobile-cta-bar {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }

  /* Mobile Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .cta-row {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .carousel-btn {
    display: none;
  }
  .faq-question {
    padding: 20px 24px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 24px;
  }
  .faq-item.active .faq-answer {
    padding: 0 24px 20px;
  }
}

/* ============== Performance & Accessibility ============== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============== Print Styles ============== */
@media print {
  .site-header,
  .mobile-cta-bar,
  .to-top,
  .carousel-btn,
  .carousel-dots {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .section-pad {
    padding: 40px 0;
  }
}
