@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: rgba(249, 115, 22, 0.1);
  --accent-glow: rgba(249, 115, 22, 0.3);
  --accent-2: #6366f1;
  --accent-2-light: rgba(99, 102, 241, 0.1);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== STICKY BAR ========== */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1A1A1A;
  color: var(--white);
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: none;
  margin: 0;
  box-shadow: none;
}


.sticky-mobile-break {
  display: block;
}

/* padding override removed - height fixed at 40px */

.sticky-bar-content {
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.25;
  gap: 6px;
}

.sticky-cta {
  display: none;
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-bar span {
  color: var(--accent);
  font-weight: 700;
}

.sticky-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

.sticky-cta {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  margin-left: 8px;
  transition: var(--transition);
}

.sticky-cta:hover {
  text-decoration: underline;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  transition: var(--transition);
  background: #1A1A1A;
  border-top: none;
  margin-top: 0;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2);
  top: 0;
}

.navbar.scrolled+.sticky-bar-gone {
  display: none;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-human {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-studio {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}



.nav-logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 16px 28px !important;
  border-radius: 100px;
  text-align: center;
  font-weight: 600 !important;
  margin-top: 16px;
  border-bottom: none !important;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gray-700);
  transition: var(--transition);
  padding: 0;
}

.mobile-menu-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-300);
}

.btn-secondary:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.btn-xl {
  font-size: 1.1rem;
  padding: 20px 48px;
}

/* ========== SECTIONS ========== */
section {
  padding: 120px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent);
  top: -10%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
  bottom: 10%;
  left: 5%;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent);
  top: 40%;
  left: 40%;
  animation: float 12s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-left: -8px;
  border: 2px solid var(--white);
}

.trust-avatar:first-child {
  margin-left: 0;
}

.hero-trust span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Hero Mockup */
.hero-visual {
  position: relative;
  animation: fadeIn 1.2s ease 0.4s both;
}

.hero-mockup {
  position: relative;
}

.mockup-browser {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: var(--transition-slow);
}

.mockup-browser:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.browser-dots {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #febc2e;
}

.browser-dots span:nth-child(3) {
  background: #28c840;
}

.browser-content {
  padding: 24px;
}

.mockup-header {
  width: 40%;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 20px;
}

.mockup-hero-block {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 146, 60, 0.15));
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-card {
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 3;
  border: 1px solid var(--gray-100);
}

.floating-badge strong {
  display: block;
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
}

.floating-badge small {
  display: block;
  color: var(--gray-500);
  font-size: 0.72rem;
}

.badge-icon {
  font-size: 1.4rem;
}

.badge-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 25%;
  left: -20px;
  animation-delay: -1.5s;
}

.badge-3 {
  bottom: -10px;
  right: 15%;
  animation-delay: -3s;
}

/* ========== STATS ========== */
.stats-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* ========== LOGOS ========== */
.logos-section {
  padding: 50px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.logos-title {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 32px;
}

.logos-track {
  overflow: hidden;
  position: relative;
}

.logos-track::before,
.logos-track::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-50), transparent);
}

.logos-track::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gray-50), transparent);
}

.logos-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scrollLogos 20s linear infinite;
  width: max-content;
}

.logo-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-300);
  white-space: nowrap;
  transition: var(--transition);
}

.logo-item:hover {
  color: var(--gray-500);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== BEFORE/AFTER ========== */
.ba-section {
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ba-item {
  display: flex;
  flex-direction: column;
}

.ba-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ba-card.before {
  opacity: 0.75;
}

.ba-card.after {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

.ba-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ba-card.before .ba-label {
  background: var(--gray-200);
  color: var(--gray-600);
}

.ba-card.after .ba-label {
  background: var(--accent);
  color: var(--white);
}

.ba-logo-placeholder {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.ba-card.before .ba-logo-placeholder {
  background: var(--gray-200);
  color: var(--gray-500);
  font-family: 'Times New Roman', serif;
}

.ba-card.after .ba-logo-placeholder {
  background: var(--black);
  color: var(--white);
}

.ba-web-placeholder {
  width: 100%;
  min-height: 120px;
  border-radius: 8px;
  padding: 16px;
  margin-top: 12px;
}

.ba-card.before .ba-web-placeholder {
  background: var(--gray-100);
}

.ba-card.after .ba-web-placeholder {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
}

.web-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sk-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.08);
}

.web-skeleton.modern .sk-line {
  background: rgba(255, 255, 255, 0.12);
}

.sk-block {
  height: 40px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
  margin-top: 4px;
}

.sk-cards-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.sk-mini-card {
  flex: 1;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ba-arrow {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--accent-glow);
  flex-shrink: 0;
  margin: -24px auto;
  transform: rotate(90deg);
  z-index: 10;
  position: relative;
}

.ba-impact {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ba-impact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 500;
}

.ba-impact-item .icon {
  font-size: 0.9rem;
  font-weight: 700;
}

.ba-impact-item .icon.negative {
  color: #ef4444;
}

.ba-impact-item .icon.positive {
  color: #22c55e;
}

/* ========== SERVICES ========== */
.services-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #fb923c);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  margin-bottom: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.service-features li {
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.service-price {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.service-price span {
  font-size: 1.4rem;
  font-family: var(--font-display);
}

/* ========== PACKS ========== */
.packs-section {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.packs-section .section-subtitle {
  color: var(--gray-400);
}

.packs-section .section-title {
  color: var(--white);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pack-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pack-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.pack-card.featured {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.06);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(249, 115, 22, 0.12);
}

.pack-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pack-header {
  margin-bottom: 24px;
}

.pack-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pack-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.pack-includes {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pack-includes li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pack-includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.pack-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.pack-price .currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-400);
}

.pack-desde {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray-400);
}

.pack-savings {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.pack-btn {
  width: 100%;
  justify-content: center;
}

/* ========== PROCESS ========== */
.process-section {
  background: var(--white);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-line {
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--gray-200);
}

.process-step {
  text-align: center;
  position: relative;
  flex: 1;
  padding: 0 12px;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-400);
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .process-number {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-light);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ========== BENEFITS ========== */
.benefits-section {
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--accent);
  color: var(--white);
}

.benefit-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.testimonial-rating {
  margin-bottom: 16px;
}

.star {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
  border: none;
  padding: 0;
  margin-top: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
}

.testimonial-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.testimonial-result {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ========== FAQ ========== */
.faq-section {
  background: var(--gray-50);
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 16px;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle span {
  position: absolute;
  background: var(--gray-400);
  transition: var(--transition);
  border-radius: 2px;
}

.faq-toggle span:first-child {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle span:last-child {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item.active .faq-toggle span {
  background: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== FORM ========== */
.form-section {
  background: var(--white);
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  margin-bottom: 28px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: #16a34a;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.form-guarantee svg {
  color: #16a34a;
  flex-shrink: 0;
}

.form-label-main {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 14px;
  display: block;
}

.form-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.form-service-option {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-service-option:hover {
  border-color: var(--gray-400);
}

.form-service-option.active {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

.form-service-option svg {
  flex-shrink: 0;
}

.form-price-display {
  text-align: center;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-family: var(--font-display);
  border: 1px solid var(--gray-100);
}

.form-price-display .price-amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.form-price-display .price-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-family: var(--font-body);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray-800);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 14px;
}

/* ========== CTA FINAL ========== */
.cta-section {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(249, 115, 22, 0.15);
  top: -20%;
  left: 20%;
  animation: float 8s ease-in-out infinite;
}

.cta-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.1);
  bottom: -20%;
  right: 15%;
  animation: float 10s ease-in-out infinite reverse;
}

.cta-section .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-section .section-subtitle {
  color: var(--gray-400);
  margin: 0 auto 40px;
  text-align: center;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cta-guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.cta-guarantee-item svg {
  color: var(--accent);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 26px;
  width: auto;
  filter: invert(1);
}

.footer-logo .logo-studio {
  color: var(--gray-400);
}

.footer-logo em {
  font-style: normal;
  color: var(--accent);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-nav {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--gray-500);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ========== WHATSAPP ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse-green 2s infinite;
  text-decoration: none;
  border: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--gray-600);
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ========== POPUPS ========== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.popup-overlay.active .popup {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-50);
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.popup-close:hover {
  background: var(--gray-100);
  color: var(--black);
}

.popup-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.popup h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.popup p {
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== IDEAL CLIENT SECTION ========== */
.ideal-client-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.ideal-client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ideal-client-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.ideal-client-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ideal-client-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.ideal-client-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.ideal-client-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== BA PROJECT INFO ========== */
.ba-project-info {
  grid-column: 1 / -1;
  text-align: center;
  padding: 12px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--gray-600);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ba-project-info strong {
  color: var(--black);
  font-weight: 700;
}

.ba-project-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ========== BA IMAGE ========== */
.ba-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* ========== PACKS INTRO NOTE ========== */
.packs-intro-note {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 16px 24px;
  background: var(--accent-light);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: var(--radius);
  text-align: center;
}

.packs-intro-note p {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
  margin: 0;
}

/* ========== MISTAKES SECTION ========== */
.mistakes-section {
  background: #fefce8;
  border-top: 1px solid #fef08a;
  border-bottom: 1px solid #fef08a;
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.mistake-item {
  background: var(--white);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.mistake-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.12);
}

.mistake-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.mistake-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.mistake-item p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========== FEATURED PROJECTS ========== */
.featured-projects-section {
  background: var(--gray-50);
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.featured-project-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.featured-project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-300);
}

.featured-project-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.featured-project-mockup {
  width: 85%;
}

.fp-browser {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-dots {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0.2);
}

.fp-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.fp-content {
  padding: 16px;
}

.fp-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-bottom: 10px;
}

.fp-block {
  height: 50px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 146, 60, 0.15));
  border-radius: 6px;
  margin-bottom: 10px;
}

.featured-project-info {
  padding: 24px;
}

.featured-project-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.featured-project-info p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured-project-info .btn {
  font-size: 0.82rem;
  padding: 10px 20px;
}

/* ========== HERO GUARANTEES ========== */
.hero-guarantees {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.35s both;
}

.hero-guarantees span {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ========== SERVICE CTA ========== */
.service-cta {
  margin-top: 16px;
  font-size: 0.82rem !important;
  padding: 8px 20px !important;
  width: 100%;
  justify-content: center;
}

/* ========== PROCESS DURATION ========== */
.process-duration {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

/* ========== TESTIMONIAL CONTEXT ========== */
.testimonial-context {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ========== WHY US SECTION ========== */
.why-us-section {
  background: var(--black);
  color: var(--white);
}

.why-us-section .section-title {
  color: var(--white);
}

.why-us-section .section-subtitle {
  color: var(--gray-400);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-us-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.why-us-item:hover {
  border-color: var(--accent);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-4px);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}

.why-us-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why-us-item p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ========== CASE STUDY ========== */
.case-study-section {
  background: var(--white);
}

.case-study-card {
  background: linear-gradient(135deg, #fafafa, #fff);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.case-study-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.case-study-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 32px;
  max-width: 700px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.case-study-block {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}

.case-study-block h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.case-study-block p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.case-study-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.cs-stat {
  text-align: center;
}

.cs-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.cs-stat span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ========== BUDGET WARNING ========== */
.budget-warning {
  margin-top: 8px;
  padding: 10px 14px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: #92400e;
  line-height: 1.5;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {

  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ideal-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .featured-projects-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: auto;
  }

  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: auto;
  }

  .hero-grid {
    gap: 40px;
  }

  .footer-top {
    gap: 40px;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .badge-1,
  .badge-2,
  .badge-3 {
    display: none;
  }

}


/* ============================= */
/* MOBILE */
/* ============================= */

@media (max-width: 768px) {
  html {
    font-size: 15px;
    background-color: #fff;
  }

  body {
    background: var(--white);
  }

  .container,
  .nav-container {
    padding: 0 18px;
  }

  section {
    padding: 70px 0;
  }

  /* ===== BACKGROUNDS ===== */
  .hero {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  }

  .services-section,
  .benefits-section,
  .ideal-client-section,
  .featured-projects-section,
  .faq-section {
    background: var(--gray-50);
  }

  .ba-section,
  .process-section,
  .testimonials-section,
  .form-section,
  .case-study-section {
    background: var(--white);
  }

  .packs-section,
  .why-us-section,
  .footer,
  .cta-section {
    background: var(--black);
  }

  .mistakes-section {
    background: #fefce8;
  }

  /* ===== STICKY BAR ===== */
  .sticky-bar {
    padding: 6px 10px;
    min-height: 38px;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
  }

  .sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    line-height: 1.2;
    font-size: 0.68rem;
  }

  .sticky-cta {
    display: none;
  }

  /* ===== NAVBAR ===== */
  .navbar {
    top: 38px;
    padding: 12px 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-100);
    overflow: visible;
  }

  .navbar.scrolled {
    top: 0;
  }

  .nav-container {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    overflow: visible;
  }

  .nav-logo-img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
    max-height: none;
  }

  .logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
  }

  .logo-human {
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
  }

  .logo-studio {
    font-size: 0.62rem;
    letter-spacing: 1px;
    line-height: 1;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    padding: 6px;
    align-items: center;
    justify-content: center;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
  }

  .mobile-menu {
    width: 86%;
    max-width: 340px;
    padding: 88px 24px 28px;
  }

  .mobile-nav-links a {
    font-size: 1rem;
    padding: 13px 0;
  }

  .mobile-cta {
    padding: 14px 22px !important;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: auto;
    padding-top: 138px;
    padding-bottom: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-badge {
    margin-bottom: 18px;
    font-size: 0.72rem;
    padding: 7px 14px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 26px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-guarantees {
    gap: 8px 14px;
    margin-top: 16px;
  }

  .hero-guarantees span {
    font-size: 0.76rem;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-trust span {
    font-size: 0.8rem;
  }

  .hero-visual {
    order: 2;
  }

  .mockup-browser {
    border-radius: 16px;
  }

  .browser-content {
    padding: 16px;
  }

  .mockup-hero-block {
    height: 64px;
    margin-bottom: 14px;
  }

  .mockup-grid {
    gap: 8px;
  }

  .mockup-card {
    height: 44px;
  }

  /* ===== TITLES ===== */
  .section-header {
    margin-bottom: 38px;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 1.9rem;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

  .section-subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 100%;
  }

  /* ===== BUTTONS ===== */
  .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .btn-xl {
    padding: 16px 24px;
    font-size: 1rem;
  }

  /* ===== STATS ===== */
  .stats-section {
    padding: 44px 0;
  }

  .stats-grid {
    gap: 18px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* ===== LOGOS ===== */
  .logos-section {
    padding: 42px 0;
  }

  .logos-grid {
    gap: 36px;
  }

  .logo-item {
    font-size: 1.05rem;
  }

  /* ===== GRIDS ===== */
  .ba-grid,
  .services-grid,
  .benefits-grid,
  .ideal-client-grid,
  .why-us-grid,
  .featured-projects-grid,
  .mistakes-grid,
  .testimonials-grid,
  .packs-grid,
  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .ba-grid {
    gap: 22px;
  }

  /* ===== CARDS ===== */
  .ba-card,
  .service-card,
  .benefit-card,
  .ideal-client-item,
  .why-us-item,
  .mistake-item,
  .testimonial-card,
  .pack-card,
  .case-study-block {
    padding: 22px 18px;
  }

  .ba-logo-placeholder {
    width: 84px;
    height: 84px;
    font-size: 1rem;
  }

  .ba-web-placeholder {
    min-height: 96px;
    padding: 12px;
  }

  .ba-arrow {
    width: 38px;
    height: 38px;
    margin: -4px auto;
    transform: rotate(90deg);
  }

  .ba-impact {
    gap: 10px;
    margin-top: 16px;
  }

  .ba-impact-item {
    font-size: 0.76rem;
  }

  .service-card h3,
  .benefit-card h4,
  .featured-project-info h3,
  .why-us-item h4,
  .ideal-client-item h4 {
    font-size: 1rem;
  }

  .service-card p,
  .benefit-card p,
  .featured-project-info p,
  .why-us-item p,
  .ideal-client-item p,
  .mistake-item p,
  .testimonial-text,
  .case-study-block p {
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .service-features li,
  .pack-includes li {
    font-size: 0.82rem;
  }

  .service-price span {
    font-size: 1.2rem;
  }

  /* ===== PACKS ===== */
  .packs-intro-note {
    padding: 14px 16px;
    margin-bottom: 28px;
  }

  .packs-intro-note p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .pack-card.featured {
    transform: none;
  }

  .pack-badge {
    right: 18px;
    font-size: 0.66rem;
    padding: 5px 12px;
  }

  .pack-card h3 {
    font-size: 1.2rem;
  }

  .pack-price {
    font-size: 2rem;
  }

  /* ===== PROCESS ===== */
  .process-timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .process-line {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "number title"
      "number duration"
      "number text";
    gap: 12px 14px;
    align-items: start;
    text-align: left;
    padding: 0;
  }

  .process-number {
    grid-area: number;
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  .process-step h4 {
    grid-area: title;
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0;
  }

  .process-duration {
    grid-area: duration;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-size: 0.68rem;
    line-height: 1.2;
    padding: 5px 10px;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .process-step p {
    grid-area: text;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--gray-500);
    margin: 0;
  }

  /* ===== CASE STUDY ===== */
  .case-study-card {
    padding: 24px 18px;
  }

  .case-study-badge {
    margin-bottom: 16px;
  }

  .case-study-content h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }

  .case-study-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cs-stat {
    min-width: calc(50% - 8px);
    text-align: left;
  }

  .cs-stat strong {
    font-size: 1.4rem;
  }

  /* ===== FAQ ===== */
  .faq-question {
    padding: 18px 18px;
    font-size: 0.9rem;
    gap: 12px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 0.86rem;
  }

  /* ===== FORM ===== */
  .form-wrapper {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .form-guarantee {
    font-size: 0.76rem;
    padding: 10px 12px;
    margin-bottom: 22px;
  }

  .form-services {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-service-option {
    font-size: 0.82rem;
    padding: 12px 14px;
  }

  .form-price-display {
    padding: 14px;
    margin-bottom: 20px;
  }

  .form-price-display .price-amount {
    font-size: 1.55rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 96px;
  }

  .form-note {
    font-size: 0.74rem;
    line-height: 1.5;
  }

  /* ===== CTA ===== */
  .cta-section {
    padding: 72px 0;
  }

  .cta-guarantee {
    gap: 10px 18px;
    margin-top: 22px;
  }

  .cta-guarantee-item {
    font-size: 0.8rem;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 56px 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: wrap;
  }

  .footer-col {
    min-width: 130px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  /* ===== FLOATING BUTTONS ===== */
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
    font-size: 1.55rem;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    right: 18px;
    bottom: 84px;
  }

  /* ===== POPUP ===== */
  .popup {
    padding: 28px 20px;
    width: calc(100% - 24px);
  }

  .popup h3 {
    font-size: 1.2rem;
  }

  .popup p {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }

  .testimonial-result {
    display: none;
  }

  .form-success-message {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .form-success-message .success-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 14px;
  }

  .form-success-message h3 {
    font-size: 1.6rem;
  }

  .form-success-message p {
    font-size: 0.95rem;
  }
}